summaryrefslogtreecommitdiff
path: root/packages/frontend/src
diff options
context:
space:
mode:
authorMar0xy <marie@kaifa.ch>2023-11-03 13:25:12 +0100
committerMar0xy <marie@kaifa.ch>2023-11-03 13:25:12 +0100
commit11e7cfc7a0666b926e0a162bf3f0c1c9eb5cfc5e (patch)
tree8e6ff28e71082698337a8d8902e41e86dec948d9 /packages/frontend/src
parentfix: subnote content not being nyaized (diff)
parentchore: remove console.log (diff)
downloadsharkey-11e7cfc7a0666b926e0a162bf3f0c1c9eb5cfc5e.tar.gz
sharkey-11e7cfc7a0666b926e0a162bf3f0c1c9eb5cfc5e.tar.bz2
sharkey-11e7cfc7a0666b926e0a162bf3f0c1c9eb5cfc5e.zip
Merge branch 'develop' of https://github.com/transfem-org/Sharkey into develop
Diffstat (limited to 'packages/frontend/src')
-rw-r--r--packages/frontend/src/pages/miauth.vue1
1 files changed, 0 insertions, 1 deletions
diff --git a/packages/frontend/src/pages/miauth.vue b/packages/frontend/src/pages/miauth.vue
index 39352da369..e4dd45bdf0 100644
--- a/packages/frontend/src/pages/miauth.vue
+++ b/packages/frontend/src/pages/miauth.vue
@@ -77,7 +77,6 @@ async function accept(): Promise<void> {
const cbUrl = new URL(props.callback);
if (['javascript:', 'file:', 'data:', 'mailto:', 'tel:'].includes(cbUrl.protocol)) throw new Error('invalid url');
cbUrl.searchParams.set('session', props.session);
- console.log(cbUrl.href);
location.href = cbUrl.href;
}
}