mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-23 01:47:58 +01:00
normalise comparisons with undefined
This commit is contained in:
@@ -814,9 +814,9 @@ liberator.Mail = function () //{{{
|
||||
if (!filter)
|
||||
filter = "";
|
||||
|
||||
if (typeof includeServers == "undefined")
|
||||
if (includeServers === undefined)
|
||||
includeServers = false;
|
||||
if (typeof includeMsgFolders == "undefined")
|
||||
if (includeMsgFolders === undefined)
|
||||
includeMsgFolders = true;
|
||||
|
||||
var tree = GetFolderTree();
|
||||
|
||||
Reference in New Issue
Block a user