Fix redirect on /@

This commit is contained in:
root
2023-02-06 22:03:29 +05:30
parent 1006b8feeb
commit 4c1e58b9a6
+1
View File
@@ -9,6 +9,7 @@ export default {
const { channelId } = this.$route.params
if (channelId.length === 0) {
this.$router.replace('/')
return
}
this.$router.replace('/c/@' + channelId)
}