Commit 3bedf6274f19772a7a59418eb1cdad81e9f30668
1 parent
88b08922
Exists in
master
and in
98 other branches
correct logout() - add arg isGuest
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
js/app/AmdaApp.js
... | ... | @@ -578,7 +578,7 @@ Ext.define('amdaApp.AmdaApp', { |
578 | 578 | } |
579 | 579 | }); |
580 | 580 | Ext.state.Manager.getProvider().saveState(); |
581 | - AmdaAction.logout(); | |
581 | + AmdaAction.logout(false); | |
582 | 582 | } |
583 | 583 | else if (btn == 'no') |
584 | 584 | { |
... | ... | @@ -591,7 +591,7 @@ Ext.define('amdaApp.AmdaApp', { |
591 | 591 | }); |
592 | 592 | Ext.state.Manager.getProvider().set(me.desktop.id+'_wallpaper',me.desktop.getWallpaper()); |
593 | 593 | Ext.state.Manager.getProvider().saveLastTime(); |
594 | - AmdaAction.logout(); | |
594 | + AmdaAction.logout(false); | |
595 | 595 | } |
596 | 596 | } |
597 | 597 | }); |
... | ... |