Browse Source

Remove <span> tags from the message (#462)

Timur 7 years ago
parent
commit
720c548cf7
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/background/utils/update.js

+ 1 - 1
src/background/utils/update.js

@@ -41,7 +41,7 @@ function doCheckUpdate(script) {
   };
   const doUpdate = () => {
     if (!downloadURL) {
-      update.message = `<span class="new">${i18n('msgNewVersion')}</span>`;
+      update.message = i18n('msgNewVersion');
       sendMessageOrIgnore(res);
       return Promise.reject();
     }