зеркало из https://github.com/mozilla/pjs.git
Bug #243852 --> reverse the logic on when we block remote images.
Fixes the regression introduced by Bug #191839. Effects thunderbird only.
This commit is contained in:
Родитель
31d9e1a660
Коммит
fbff74588a
|
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче