forked from MirrorHub/synapse
BF: Check config exists (=defined in the localstorage) before using it
This commit is contained in:
parent
b9172b982f
commit
9b61076d42
1 changed files with 6 additions and 2 deletions
|
@ -36,8 +36,12 @@ angular.module('MatrixWebClientController', ['matrixService', 'mPresence', 'even
|
|||
eventStreamService.resume();
|
||||
mPresence.start();
|
||||
}
|
||||
|
||||
$scope.user_id = matrixService.config().user_id;
|
||||
|
||||
$scope.user_id;
|
||||
var config = matrixService.config();
|
||||
if (config) {
|
||||
$scope.user_id = matrixService.config().user_id;
|
||||
}
|
||||
|
||||
/**
|
||||
* Open a given page.
|
||||
|
|
Loading…
Reference in a new issue