fix 'taler+http://' interpretation

This commit is contained in:
MS 2020-10-02 17:16:19 +02:00
parent aff5ee6b80
commit 7008de598d
No known key found for this signature in database
GPG Key ID: 8D526861953F4C0F

View File

@ -99,6 +99,9 @@ export function classifyTalerUri(s: string): TalerUriType {
if (sl.startsWith("taler://withdraw/")) {
return TalerUriType.TalerWithdraw;
}
if (sl.startsWith("taler+http://withdraw/")) {
return TalerUriType.TalerWithdraw;
}
if (sl.startsWith("taler://notify-reserve/")) {
return TalerUriType.TalerNotifyReserve;
}