From df69e22bb992d61ad53d2fc03ec7b6ccc5b8d938 Mon Sep 17 00:00:00 2001 From: gorhill Date: Sat, 17 Jan 2015 15:52:36 -0500 Subject: [PATCH] fixed bad test --- platform/firefox/vapi-background.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform/firefox/vapi-background.js b/platform/firefox/vapi-background.js index e3cfb6d35..2fe33301b 100644 --- a/platform/firefox/vapi-background.js +++ b/platform/firefox/vapi-background.js @@ -930,7 +930,7 @@ var httpObserver = { return; } - if ( 1 << channelData[0] & this.VALID_CSP_TARGETS === 0 ) { + if ( (1 << channelData[0] & this.VALID_CSP_TARGETS) === 0 ) { return; }