From 35b9fba785c13b7c51803e2364a932eee248b36b Mon Sep 17 00:00:00 2001 From: Jonathan Sampson Date: Thu, 13 Apr 2017 17:07:11 -0500 Subject: [PATCH] Check description for __MSG_ values --- app/extensions.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/extensions.js b/app/extensions.js index 9f2f24fcb64..f9eb46d1725 100644 --- a/app/extensions.js +++ b/app/extensions.js @@ -381,7 +381,7 @@ module.exports.init = () => { name && (installInfo.name = messages[name[1]].message) } if (installInfo.description) { - let description = installInfo.name.match(pattern) + let description = installInfo.description.match(pattern) description && (installInfo.description = messages[description[1]].message) } if (installInfo.manifest.browser_action.default_title) {