From 226c5d601c7ccc4e81ec8ecc2a30ea7e15367a0e Mon Sep 17 00:00:00 2001 From: Ajay Ramachandran Date: Tue, 10 Dec 2019 18:17:07 -0500 Subject: [PATCH] Added space to notification. --- background.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/background.js b/background.js index 7aaed64e..3961009b 100644 --- a/background.js +++ b/background.js @@ -33,7 +33,7 @@ chrome.runtime.onMessage.addListener(function (request, sender, callback) { case "alertPrevious": chrome.notifications.create("stillThere" + Math.random(), { type: "basic", - title: chrome.i18n.getMessage("wantToSubmit") + request.previousVideoID + "?", + title: chrome.i18n.getMessage("wantToSubmit") + " " + request.previousVideoID + "?", message: chrome.i18n.getMessage("leftTimes"), iconUrl: "./icons/LogoSponsorBlocker256px.png" });