Handle @ in channels the correct way

This commit is contained in:
root
2023-04-28 05:13:32 +05:30
parent 1f49bf78ec
commit 326e7bd5fe
4 changed files with 9 additions and 6 deletions
+1 -1
View File
@@ -11,7 +11,7 @@ export default {
this.$router.replace('/')
return
}
this.$router.replace('/c/@' + channelId)
this.$router.replace('/@/' + channelId)
}
}
</script>