From b66a5155fc07b0bcd6475a934b485f985ec37aa9 Mon Sep 17 00:00:00 2001 From: Son NK Date: Thu, 11 Apr 2024 23:10:47 +0200 Subject: [PATCH] fix ""/name" must NOT have more than 45 characters" on firefox --- webpack.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webpack.config.js b/webpack.config.js index e571d45..fba8010 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -107,7 +107,7 @@ const config = { if (process.env.BETA) { const geckoId = jsonContent.browser_specific_settings.gecko.id; - jsonContent.name = jsonContent.name.replace('SimpleLogin', 'SimpleLogin (BETA)'); + jsonContent.name = 'SimpleLogin BETA'; jsonContent.icons = { '48': 'icons/icon_beta_48.png', '128': 'icons/icon_beta_128.png'