summaryrefslogtreecommitdiff
path: root/docshell
diff options
context:
space:
mode:
authorJustOff <Off.Just.Off@gmail.com>2018-08-22 14:08:55 +0300
committerJustOff <Off.Just.Off@gmail.com>2018-08-22 14:08:55 +0300
commit699965a80e4bd523ee403a836ac84f17945bf1f3 (patch)
tree2e62e0a144917ae52921dce3090f398e09ff58e1 /docshell
parentf9f21be249a9f9e02b2d075e8769449fa29479f7 (diff)
downloadaura-central-699965a80e4bd523ee403a836ac84f17945bf1f3.tar.gz
Explicitly specify parentheses in a mixed boolean expression in ShouldAddToSessionHistory()
Diffstat (limited to 'docshell')
-rw-r--r--docshell/base/nsDocShell.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/docshell/base/nsDocShell.cpp b/docshell/base/nsDocShell.cpp
index a3d42c679..f4840297d 100644
--- a/docshell/base/nsDocShell.cpp
+++ b/docshell/base/nsDocShell.cpp
@@ -12282,8 +12282,8 @@ nsDocShell::ShouldAddToSessionHistory(nsIURI* aURI)
}
if (buf.EqualsLiteral("blank") || buf.EqualsLiteral("logopage") ||
- buf.EqualsLiteral("newtab") &&
- !Preferences::GetBool("browser.newtabpage.add_to_session_history", false)) {
+ (buf.EqualsLiteral("newtab") &&
+ !Preferences::GetBool("browser.newtabpage.add_to_session_history", false))) {
return false;
}
}