Don't trigger initial passive login before viewmodels are available
Closes #1374
This commit is contained in:
parent
ad201b040d
commit
397f762182
1 changed files with 2 additions and 1 deletions
|
|
@ -129,7 +129,8 @@ $(function() {
|
|||
self.allViewModels = allViewModels;
|
||||
};
|
||||
|
||||
self.onServerConnect = self.onServerReconnect = function() {
|
||||
self.onStartupComplete = self.onServerConnect = self.onServerReconnect = function() {
|
||||
if (self.allViewModels == undefined) return;
|
||||
self.requestData();
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue