aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--html/text_entry_list.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/html/text_entry_list.js b/html/text_entry_list.js
index 80895c9..f5f6e2c 100644
--- a/html/text_entry_list.js
+++ b/html/text_entry_list.js
@@ -243,6 +243,10 @@ async function repo_list(dialog_ctx) {
if (!/^https:\/\//.test(repo_url))
error_msg = "Repository URLs shoud use https:// schema.";
+ /* Make exception for localhost while disallowing http://. */
+ if (/^http:\/\/(127\.0\.0\.1|localhost)([:/].*)?$/.test(repo_url))
+ error_msg = null;
+
if (error_msg) {
dialog.error(dialog_ctx, error_msg);
throw error_msg;