From 4c1e58b9a681a9270a42cf06b4daf01e5ddfdba6 Mon Sep 17 00:00:00 2001 From: root Date: Mon, 6 Feb 2023 22:03:29 +0530 Subject: [PATCH] Fix redirect on /@ --- src/components/NewChannelRedirect.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/NewChannelRedirect.vue b/src/components/NewChannelRedirect.vue index b4f903e..d2aa7c7 100644 --- a/src/components/NewChannelRedirect.vue +++ b/src/components/NewChannelRedirect.vue @@ -9,6 +9,7 @@ export default { const { channelId } = this.$route.params if (channelId.length === 0) { this.$router.replace('/') + return } this.$router.replace('/c/@' + channelId) }