Skip to content

Commit 5e4f572

Browse files
committed
More s/IntegrationManager/Platform/
1 parent 1b0c561 commit 5e4f572

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/vector/index.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ import UAParser from 'ua-parser-js';
5656
import url from 'url';
5757

5858
import {parseQs, parseQsFromFragment} from './url_utils';
59-
import IntegrationManager from './integration';
59+
import Platform from './platform';
6060

6161
var lastLocationHashSet = null;
6262

@@ -209,7 +209,7 @@ function onLoadCompleted() {
209209
async function loadApp() {
210210
const fragparts = parseQsFromFragment(window.location);
211211
const params = parseQs(window.location);
212-
const integrationManager = new IntegrationManager();
212+
const platform = new Platform();
213213

214214
// don't try to redirect to the native apps if we're
215215
// verifying a 3pid
@@ -263,7 +263,7 @@ async function loadApp() {
263263
enableGuest={true}
264264
onLoadCompleted={onLoadCompleted}
265265
defaultDeviceDisplayName={getDefaultDeviceDisplayName()}
266-
integrationManager={integrationManager}
266+
platform={platform}
267267
/>,
268268
document.getElementById('matrixchat')
269269
);

0 commit comments

Comments
 (0)