mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-08 00:47:04 +03:00
Small fixes
This commit is contained in:
parent
5f450e680f
commit
a6e30e5506
5 changed files with 137 additions and 124 deletions
|
|
@ -86,7 +86,19 @@ Consts.Values.SmtpDefaulSecurePort = 465;
|
||||||
* @const
|
* @const
|
||||||
* @type {number}
|
* @type {number}
|
||||||
*/
|
*/
|
||||||
Consts.Values.iMessageBodyCacheLimit = 15;
|
Consts.Values.MessageBodyCacheLimit = 15;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @const
|
||||||
|
* @type {number}
|
||||||
|
*/
|
||||||
|
Consts.Values.AjaxErrorLimit = 7;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @const
|
||||||
|
* @type {number}
|
||||||
|
*/
|
||||||
|
Consts.Values.TokenErrorLimit = 10;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @const
|
* @const
|
||||||
|
|
|
||||||
|
|
@ -43,12 +43,12 @@ AbstractAjaxRemoteStorage.prototype.defaultResponse = function (fCallback, sRequ
|
||||||
Globals.iTokenErrorCount++;
|
Globals.iTokenErrorCount++;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (10 < Globals.iTokenErrorCount)
|
if (Consts.Values.TokenErrorLimit < Globals.iTokenErrorCount)
|
||||||
{
|
{
|
||||||
RL.loginAndLogoutReload(true);
|
RL.loginAndLogoutReload(true);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (oData.Logout || 7 < Globals.iAjaxErrorCount)
|
if (oData.Logout || Consts.Values.AjaxErrorLimit < Globals.iAjaxErrorCount)
|
||||||
{
|
{
|
||||||
if (window.__rlah_clear)
|
if (window.__rlah_clear)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -357,7 +357,7 @@ WebMailDataStorage.prototype.purgeMessageBodyCache = function()
|
||||||
var
|
var
|
||||||
iCount = 0,
|
iCount = 0,
|
||||||
oMessagesBodiesDom = null,
|
oMessagesBodiesDom = null,
|
||||||
iEnd = Globals.iMessageBodyCacheCount - Consts.Values.iMessageBodyCacheLimit
|
iEnd = Globals.iMessageBodyCacheCount - Consts.Values.MessageBodyCacheLimit
|
||||||
;
|
;
|
||||||
|
|
||||||
if (0 < iEnd)
|
if (0 < iEnd)
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
"name": "RainLoop",
|
"name": "RainLoop",
|
||||||
"title": "RainLoop Webmail",
|
"title": "RainLoop Webmail",
|
||||||
"version": "1.4.1",
|
"version": "1.4.1",
|
||||||
"release": "516",
|
"release": "517",
|
||||||
"description": "Simple, modern & fast web-based email client",
|
"description": "Simple, modern & fast web-based email client",
|
||||||
"homepage": "http://rainloop.net",
|
"homepage": "http://rainloop.net",
|
||||||
"main": "Gruntfile.js",
|
"main": "Gruntfile.js",
|
||||||
|
|
|
||||||
|
|
@ -28,7 +28,8 @@ class Contacts extends \RainLoop\Providers\AbstractProvider
|
||||||
*/
|
*/
|
||||||
public function IsActive()
|
public function IsActive()
|
||||||
{
|
{
|
||||||
return $this->oDriver instanceof \RainLoop\Providers\Contacts\ContactsInterface;
|
return $this->oDriver instanceof \RainLoop\Providers\Contacts\ContactsInterface &&
|
||||||
|
$this->oDriver->IsSupported();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue