misc bug fixes

This commit is contained in:
alexadam 2017-07-14 22:27:09 +03:00
parent 5f01a960f1
commit f76512d55b
2 changed files with 4 additions and 1 deletions

View file

@ -67,7 +67,7 @@ chrome.runtime.onMessage.addListener(function(request, sender, sendResponse) {
if (request.type === 'get include style') {
chrome.storage.local.get('includeStyle', function (data) {
if (!data) {
sendResponse({includeStyle: true});
sendResponse({includeStyle: false});
} else {
sendResponse({includeStyle: data.includeStyle});
}