Do not stuck in login page after logout

Closes #3761
pull/4541/head
Rodrigo Nascimento 9 years ago
parent cdf0d698e8
commit 3f5d971263
No known key found for this signature in database
GPG Key ID: 2C85B3AFE75D23F9
  1. 5
      packages/rocketchat-ui-master/master/main.coffee

@ -150,7 +150,10 @@ Template.main.helpers
return RocketChat.iframeLogin.reactiveIframeUrl.get()
subsReady: ->
ready = not Meteor.userId()? or (FlowRouter.subsReady('userData', 'activeUsers') and CachedChatSubscription.ready.get())
routerReady = FlowRouter.subsReady('userData', 'activeUsers')
subscriptionsReady = CachedChatSubscription.ready.get()
ready = not Meteor.userId()? or (routerReady and subscriptionsReady)
RocketChat.CachedCollectionManager.syncEnabled = ready
return ready

Loading…
Cancel
Save