fix clip support

This commit is contained in:
dragongoose
2023-10-17 22:00:03 -04:00
parent 170bfd187c
commit 2a1b326f94
2 changed files with 7 additions and 2 deletions

View File

@ -56,7 +56,7 @@ export default {
const clipSlug = this.$route.params.slug
const streamerName = this.$route.params.streamer
await getEndpoint(`api/clips/${streamerName}/${clipSlug}`)
await getEndpoint(`api/clips/${clipSlug}`)
.then((data) => {
this.data = data
})