aboutsummaryrefslogtreecommitdiff
path: root/src/util/taleruri.ts
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2020-04-07 13:58:55 +0530
committerFlorian Dold <florian.dold@gmail.com>2020-04-07 13:58:55 +0530
commitfaba5e9db8e0d1fdc4845de6b504b4e2ea3ca72b (patch)
tree53bbc26d9e5d16e168e682ce808461a395e00f45 /src/util/taleruri.ts
parentfb2e2f89935240666de66e4b2c11125cb3b2943d (diff)
downloadwallet-core-faba5e9db8e0d1fdc4845de6b504b4e2ea3ca72b.tar.xz
finally make linter happy
Diffstat (limited to 'src/util/taleruri.ts')
-rw-r--r--src/util/taleruri.ts5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/util/taleruri.ts b/src/util/taleruri.ts
index 46cc199f8..2eaea2846 100644
--- a/src/util/taleruri.ts
+++ b/src/util/taleruri.ts
@@ -97,7 +97,10 @@ export function classifyTalerUri(s: string): TalerUriType {
return TalerUriType.Unknown;
}
-export function getOrderDownloadUrl(merchantBaseUrl: string, orderId: string): string {
+export function getOrderDownloadUrl(
+ merchantBaseUrl: string,
+ orderId: string,
+): string {
const u = new URL("proposal", merchantBaseUrl);
u.searchParams.set("order_id", orderId);
return u.href;