Merge pull request #3569 from matrix-org/t3chguy/CallHandler_fail_ToS

If ToS gets rejected/any Scalar error then don't make Jitsi widget
pull/21833/head
Michael Telatynski 2019-10-28 10:05:46 +00:00 committed by GitHub
commit 89e69ddb0a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 3 deletions

View File

@ -387,7 +387,7 @@ async function _startCallApp(roomId, type) {
// work for us. Better that the user knows before everyone else in the
// room sees it.
const managers = IntegrationManagers.sharedInstance();
let haveScalar = true;
let haveScalar = false;
if (managers.hasManager()) {
try {
const scalarClient = managers.getPrimaryManager().getScalarClient();
@ -396,8 +396,6 @@ async function _startCallApp(roomId, type) {
} catch (e) {
// ignore
}
} else {
haveScalar = false;
}
if (!haveScalar) {