-fix missing enum case
This commit is contained in:
parent
3a91f3ff88
commit
7b40a9f415
@ -271,6 +271,9 @@ function openWalletURIFromPopup(talerUri: string): void {
|
||||
`Response with HTTP 402 the Taler header but could not classify ${talerUri}`,
|
||||
);
|
||||
return;
|
||||
case TalerUriType.TalerDevExperiment:
|
||||
logger.warn(`taler://dev-experiment URIs are not allowed in headers`);
|
||||
return;
|
||||
default: {
|
||||
const error: never = uriType;
|
||||
logger.warn(
|
||||
|
@ -301,6 +301,10 @@ function parseTalerUriAndRedirect(tabId: number, talerUri: string): void {
|
||||
`Response with HTTP 402 the Taler header but could not classify ${talerUri}`,
|
||||
);
|
||||
return;
|
||||
case TalerUriType.TalerDevExperiment:
|
||||
// FIXME: Implement!
|
||||
logger.warn("not implemented");
|
||||
return;
|
||||
default: {
|
||||
const error: never = uriType;
|
||||
logger.warn(
|
||||
|
Loading…
Reference in New Issue
Block a user