diff options
| author | Mar0xy <marie@kaifa.ch> | 2023-11-03 13:25:12 +0100 |
|---|---|---|
| committer | Mar0xy <marie@kaifa.ch> | 2023-11-03 13:25:12 +0100 |
| commit | 11e7cfc7a0666b926e0a162bf3f0c1c9eb5cfc5e (patch) | |
| tree | 8e6ff28e71082698337a8d8902e41e86dec948d9 /packages/frontend/src | |
| parent | fix: subnote content not being nyaized (diff) | |
| parent | chore: remove console.log (diff) | |
| download | sharkey-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.vue | 1 |
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; } } |