We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d2185ce commit b2b3d4eCopy full SHA for b2b3d4e
SignalCaptcha/js/main.js
@@ -30,7 +30,10 @@
30
}
31
else if (args.detail.kind === activation.ActivationKind.protocol) {
32
const originalUri = args.detail.uri.rawUri;
33
- const token = originalUri.substring(16);
+ let token = originalUri.substring(16);
34
+ if (token.endsWith("/")) {
35
+ token = token.substring(0, token.length - 1);
36
+ }
37
const newUri = "signalpassback://?" + token;
38
const launcherOptions = new Windows.System.LauncherOptions();
39
launcherOptions.targetApplicationPackageFamilyName = "2383BenediktRadtke.SignalPrivateMessenger_teak1p7hcx9ga";
0 commit comments