lowercase instance name when inputting

scroll-to-status-in-thread
Nolan Lawson 2018-01-27 17:41:18 -08:00
rodzic 5a55506204
commit bda07e3f22
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -12,7 +12,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('/$', '')
instanceName = instanceName.replace(/^https?:\/\//, '').replace('/$', '').toLowerCase()
if (Object.keys(loggedInInstances).includes(instanceName)) {
store.set({logInToInstanceError: `You've already logged in to ${instanceName}`})
return