fix theme switch on add instance

This commit is contained in:
Nolan Lawson 2018-01-13 21:03:03 -08:00
parent c49c80305c
commit 9d9e6716d5
1 changed files with 2 additions and 0 deletions

View File

@ -52,6 +52,7 @@
import { registerApplication, generateAuthLink, getAccessTokenFromAuthCode } from '../../_utils/mastodon/oauth'
import { store } from '../../_utils/store'
import { goto } from 'sapper/runtime.js'
import { switchToTheme } from '../../_utils/themeEngine'
const REDIRECT_URI = (typeof location !== 'undefined' ?
location.origin : 'https://pinafore.social') + '/settings/instances/add'
@ -121,6 +122,7 @@
instanceThemes: instanceThemes
})
this.store.save()
switchToTheme('default')
goto('/')
},
}