3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-05-18 15:45:03 +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 5eecadd2e9
commit a13ab9f3d1

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