From 4c80d9255f040f9c28ffb9e08bc3588c6e8fe2a1 Mon Sep 17 00:00:00 2001 From: Jason Date: Mon, 21 Mar 2016 22:29:57 -0500 Subject: [PATCH] Stop health check from spinning its wheels --- background.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/background.js b/background.js index 76c40604..213a2276 100644 --- a/background.js +++ b/background.js @@ -73,7 +73,7 @@ chrome.runtime.onMessage.addListener(function(request, sender, sendResponse) { break; case "healthCheck": getDatabase(function() { sendResponse(true); }, function() { sendResponse(false); }); - break; + return true; case "openURL": openURL(request); break;