More s/IntegrationManager/Platform/
This commit is contained in:
parent
1b0c561ac1
commit
5e4f572a46
1 changed files with 3 additions and 3 deletions
|
@ -56,7 +56,7 @@ import UAParser from 'ua-parser-js';
|
||||||
import url from 'url';
|
import url from 'url';
|
||||||
|
|
||||||
import {parseQs, parseQsFromFragment} from './url_utils';
|
import {parseQs, parseQsFromFragment} from './url_utils';
|
||||||
import IntegrationManager from './integration';
|
import Platform from './platform';
|
||||||
|
|
||||||
var lastLocationHashSet = null;
|
var lastLocationHashSet = null;
|
||||||
|
|
||||||
|
@ -209,7 +209,7 @@ function onLoadCompleted() {
|
||||||
async function loadApp() {
|
async function loadApp() {
|
||||||
const fragparts = parseQsFromFragment(window.location);
|
const fragparts = parseQsFromFragment(window.location);
|
||||||
const params = parseQs(window.location);
|
const params = parseQs(window.location);
|
||||||
const integrationManager = new IntegrationManager();
|
const platform = new Platform();
|
||||||
|
|
||||||
// don't try to redirect to the native apps if we're
|
// don't try to redirect to the native apps if we're
|
||||||
// verifying a 3pid
|
// verifying a 3pid
|
||||||
|
@ -263,7 +263,7 @@ async function loadApp() {
|
||||||
enableGuest={true}
|
enableGuest={true}
|
||||||
onLoadCompleted={onLoadCompleted}
|
onLoadCompleted={onLoadCompleted}
|
||||||
defaultDeviceDisplayName={getDefaultDeviceDisplayName()}
|
defaultDeviceDisplayName={getDefaultDeviceDisplayName()}
|
||||||
integrationManager={integrationManager}
|
platform={platform}
|
||||||
/>,
|
/>,
|
||||||
document.getElementById('matrixchat')
|
document.getElementById('matrixchat')
|
||||||
);
|
);
|
||||||
|
|
Loading…
Add table
Reference in a new issue