Clean up auth.vue

This commit is contained in:
Luna 2023-03-02 17:21:14 -05:00
parent e2ebe83238
commit 5e79069c4a
No known key found for this signature in database
GPG Key ID: 1899404574D6EEFC
1 changed files with 1 additions and 3 deletions

View File

@ -89,9 +89,7 @@ export default defineComponent({
const isMastodon = !!getUrlParams().mastodon
if (this.session.app.callbackUrl && isMastodon) {
const stateParam = !!getUrlParams().state ? `&state=$(getUrlParams().state)` : '';
const tokenRaw = this.session.token
const token = tokenRaw.replaceAll('-', '')
location.href = `${this.session.app.callbackUrl}?code=${tokenRaw}${stateParam}`;
location.href = `${this.session.app.callbackUrl}?code=${this.session.token}${stateParam}`;
} else if (this.session.app.callbackUrl) {
const url = new URL(this.session.app.callbackUrl);
if (['javascript:', 'file:', 'data:', 'mailto:', 'tel:'].includes(url.protocol)) throw new Error('invalid url');