From e52aae3acd27b33fc5af281acf16f20c71ddd53b Mon Sep 17 00:00:00 2001 From: Sunil Mohan Adapa Date: Sun, 20 Feb 2022 03:06:31 -0800 Subject: [PATCH] email: clients: Make Thunderbird URLs language independent The site will then redirect to a language specific URL. Signed-off-by: Sunil Mohan Adapa Reviewed-by: James Valleroy --- plinth/modules/email/manifest.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plinth/modules/email/manifest.py b/plinth/modules/email/manifest.py index 6d387771d..d46f8fbca 100644 --- a/plinth/modules/email/manifest.py +++ b/plinth/modules/email/manifest.py @@ -21,15 +21,15 @@ clients = [ 'platforms': [{ 'type': 'download', 'os': 'gnu-linux', - 'url': 'https://www.thunderbird.net/en-US/' + 'url': 'https://www.thunderbird.net/' }, { 'type': 'download', 'os': 'macos', - 'url': 'https://www.thunderbird.net/en-US/' + 'url': 'https://www.thunderbird.net/' }, { 'type': 'download', 'os': 'windows', - 'url': 'https://www.thunderbird.net/en-US/' + 'url': 'https://www.thunderbird.net/' }] }, {