3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-03-15 05:41:51 +00:00

Fix invalid redirect in GuildConfigEditor if guild was not found

This commit is contained in:
Dragory 2019-11-08 00:05:01 +02:00
parent c9a21c64bf
commit 289470126a

View file

@ -36,7 +36,7 @@
async mounted() {
await this.$store.dispatch("guilds/loadAvailableGuilds");
if (this.guild == null) {
this.$router.push('/dashboard/guilds');
this.$router.push('/dashboard');
return;
}