aboutsummaryrefslogtreecommitdiff
path: root/packages/taler-util
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2022-11-11 11:16:01 +0100
committerFlorian Dold <florian@dold.me>2022-11-11 11:16:01 +0100
commit9ec34480768fa9709cbee8d4b70118d31b379795 (patch)
tree8e183db6f5e8e026f8d155582c2c080c4a9f0bcb /packages/taler-util
parent1fe8967c4387ced59abc9086692c6753a6dab9bd (diff)
downloadwallet-core-9ec34480768fa9709cbee8d4b70118d31b379795.tar.xz
remove deprecated taler://notify-reserve URI handling
Diffstat (limited to 'packages/taler-util')
-rw-r--r--packages/taler-util/src/taleruri.ts4
1 files changed, 0 insertions, 4 deletions
diff --git a/packages/taler-util/src/taleruri.ts b/packages/taler-util/src/taleruri.ts
index fb7175e74..13cdde9a9 100644
--- a/packages/taler-util/src/taleruri.ts
+++ b/packages/taler-util/src/taleruri.ts
@@ -94,7 +94,6 @@ export enum TalerUriType {
TalerWithdraw = "taler-withdraw",
TalerTip = "taler-tip",
TalerRefund = "taler-refund",
- TalerNotifyReserve = "taler-notify-reserve",
TalerPayPush = "taler-pay-push",
TalerPayPull = "taler-pay-pull",
TalerRecovery = "taler-recovery",
@@ -152,9 +151,6 @@ export function classifyTalerUri(s: string): TalerUriType {
if (sl.startsWith(`taler+http://${talerActionPayPull}/`)) {
return TalerUriType.TalerPayPull;
}
- if (sl.startsWith("taler://notify-reserve/")) {
- return TalerUriType.TalerNotifyReserve;
- }
if (sl.startsWith("taler://dev-experiment/")) {
return TalerUriType.TalerDevExperiment;
}