diff --git a/mailnews/base/src/nsMsgContentPolicy.cpp b/mailnews/base/src/nsMsgContentPolicy.cpp index 23cbf26f5028..d1c836242a4c 100644 --- a/mailnews/base/src/nsMsgContentPolicy.cpp +++ b/mailnews/base/src/nsMsgContentPolicy.cpp @@ -147,8 +147,8 @@ nsMsgContentPolicy::ShouldLoad(PRUint32 aContentType, if (needToCheck) // http or https ? { // check the 'disable remote images pref' and block the image if appropriate - *aDecision = mBlockRemoteImages ? nsIContentPolicy::ACCEPT : - nsIContentPolicy::REJECT_REQUEST; + *aDecision = mBlockRemoteImages ? nsIContentPolicy::REJECT_REQUEST : + nsIContentPolicy::ACCEPT; } } }