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) }