mirror of
https://codeberg.org/SafeTwitch/safetwitch.git
synced 2025-01-03 11:20:07 -05:00
Fix endless timstamps
This commit is contained in:
parent
ee81b38c46
commit
1ec6d07a23
1 changed files with 2 additions and 1 deletions
|
@ -9,7 +9,8 @@ export default {
|
||||||
let currentUrl = ref(instanceUrl)
|
let currentUrl = ref(instanceUrl)
|
||||||
|
|
||||||
return {
|
return {
|
||||||
path: route.fullPath,
|
// remove any query from the path
|
||||||
|
path: route.fullPath.split("?")[0],
|
||||||
usingTwitchUrl: ref(false),
|
usingTwitchUrl: ref(false),
|
||||||
usingTime: ref(false),
|
usingTime: ref(false),
|
||||||
query: ref(""),
|
query: ref(""),
|
||||||
|
|
Loading…
Reference in a new issue