1
0

Small fix

This commit is contained in:
Markus Birth 2013-06-25 15:40:11 +02:00
parent 73627a44f4
commit 5b6a5eaa22

@ -6,7 +6,7 @@ chrome.tabs.onUpdated.addListener(
chrome.extension.onRequest.addListener(
(request, sender, sendResponse) ->
if request.method == "getBlacklist"
if request.method is "getBlacklist"
sendResponse(
blacklist: JSON.parse(localStorage["blacklist"])
)