From e282f5df2ac7df93551fae8dda316dcfa7ea4994 Mon Sep 17 00:00:00 2001 From: Lim Chee Aun Date: Tue, 31 Jan 2023 00:58:00 +0800 Subject: [PATCH] Strip protocol from instance domain/uri --- src/app.jsx | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/app.jsx b/src/app.jsx index 87d6a871..f69c1964 100644 --- a/src/app.jsx +++ b/src/app.jsx @@ -377,7 +377,12 @@ function initMasto(params) { } = info; if (uri || domain) { const instances = store.local.getJSON('instances') || {}; - instances[(domain || uri).toLowerCase()] = info; + instances[ + (domain || uri) + .replace(/^https?:\/\//, '') + .replace(/\/+$/, '') + .toLowerCase() + ] = info; store.local.setJSON('instances', instances); } if (streamingApi || streaming) {