mirror of
https://github.com/vector-im/element-web.git
synced 2026-02-09 01:31:47 +01:00
Fix: make sure scalarUrls is never undefined
This commit is contained in:
parent
40bd1845d2
commit
166364ba03
@ -100,11 +100,14 @@ export default class WidgetUtils {
|
||||
}
|
||||
|
||||
const testUrl = url.parse(testUrlString);
|
||||
|
||||
let scalarUrls = SdkConfig.get().integrations_widgets_urls;
|
||||
if (!scalarUrls || scalarUrls.length === 0) {
|
||||
const defaultManager = IntegrationManagers.sharedInstance().getPrimaryManager();
|
||||
if (defaultManager) scalarUrls = [defaultManager.apiUrl];
|
||||
if (defaultManager) {
|
||||
scalarUrls = [defaultManager.apiUrl];
|
||||
} else {
|
||||
scalarUrls = [];
|
||||
}
|
||||
}
|
||||
|
||||
for (let i = 0; i < scalarUrls.length; i++) {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user