From acf464af75eea6da37e4e78782be85d8d2641389 Mon Sep 17 00:00:00 2001 From: rakekniven Date: Sat, 10 Oct 2020 23:02:08 +0200 Subject: [PATCH] Changed uppercase of https Signed-off-by: rakekniven --- ts/admin.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ts/admin.ts b/ts/admin.ts index ad1de5b..b004f17 100644 --- a/ts/admin.ts +++ b/ts/admin.ts @@ -107,7 +107,7 @@ $(() => { let message = t('bbb', 'Unexpected error occurred'); if (err === 'https') { - message = t('bbb', 'URL has to start with https'); + message = t('bbb', 'URL has to start with HTTPS'); } else if (err === 'token') { message = t('bbb', 'URL has to contain the {token} placeholder'); }