From 161bb0a73f43c494541418b55390a54a4ac17c91 Mon Sep 17 00:00:00 2001 From: Sam Therapy Date: Wed, 16 Feb 2022 09:40:59 -0600 Subject: [PATCH] Make it clear that HTTPS is not required Signed-off-by: Sam Therapy --- src/token.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/token.ts b/src/token.ts index a1551dd..94fd0f9 100644 --- a/src/token.ts +++ b/src/token.ts @@ -45,7 +45,7 @@ if (args.verbose) { console.log(); } -const instance: string = question("Instance URL: "); +const instance: string = "https://" + question("Instance URL: https://"); callDetector(instance).then(type => { const client = generator(type, instance); client.registerApp("JS-Token", { website: "https://git.froth.zone/Sam/js-feditoken" })