Merge pull request #14513 from vector-im/travis/fix-sso

Use the right protocol for SSO URLs
pull/14541/head
Travis Ralston 2020-07-15 19:48:17 -06:00 committed by GitHub
commit 8eac445ddc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -502,7 +502,7 @@ export default class ElectronPlatform extends VectorBasePlatform {
getSSOCallbackUrl(fragmentAfterLogin: string): URL {
const url = super.getSSOCallbackUrl(fragmentAfterLogin);
url.protocol = "riot";
url.protocol = "element";
url.searchParams.set("riot-desktop-ssoid", this.ssoID);
return url;
}