mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-02-23 06:18:03 +08:00
Disable "Auto Logout" when "Remember me" is on. (#988)
This commit is contained in:
parent
06d3dac310
commit
d64b6388ae
1 changed files with 1 additions and 1 deletions
|
@ -85,7 +85,7 @@
|
|||
|
||||
Events.sub('rl.auto-logout-refresh', function () {
|
||||
window.clearTimeout(self.iAutoLogoutTimer);
|
||||
if (0 < self.autoLogout())
|
||||
if (0 < self.autoLogout() && !Settings.settingsGet('AccountSignMe'))
|
||||
{
|
||||
self.iAutoLogoutTimer = window.setTimeout(function () {
|
||||
Events.pub('rl.auto-logout');
|
||||
|
|
Loading…
Reference in a new issue