fix: allow trailing slash in instance name (#52)

Fix #31: allow trailing slash in instance name
pull/53/head
Maxime Le Conte des Floris 2018-04-10 00:09:58 +02:00 zatwierdzone przez Nolan Lawson
rodzic 35eac4a314
commit 2b143ebeeb
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -13,7 +13,7 @@ const REDIRECT_URI = (typeof location !== 'undefined'
async function redirectToOauth () {
let instanceName = store.get('instanceNameInSearch')
let loggedInInstances = store.get('loggedInInstances')
instanceName = instanceName.replace(/^https?:\/\//, '').replace('/$', '').toLowerCase()
instanceName = instanceName.replace(/^https?:\/\//, '').replace(/\/$/, '').replace('/$', '').toLowerCase()
if (Object.keys(loggedInInstances).includes(instanceName)) {
store.set({logInToInstanceError: `You've already logged in to ${instanceName}`})
return