From 5ec56b25e4dcba81d0bdff531c35bfea3ce37f3b Mon Sep 17 00:00:00 2001 From: Travis Shivers Date: Mon, 29 Jun 2020 01:32:08 -0500 Subject: [PATCH] Fixed autojoin --- src/components/createroom.vue | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/src/components/createroom.vue b/src/components/createroom.vue index 9932c608..782e2715 100644 --- a/src/components/createroom.vue +++ b/src/components/createroom.vue @@ -82,14 +82,10 @@ export default { created() { this.fetchServersHealth(); - if (this.GET_CONFIG.autoJoin) { + if (this.GET_CONFIG.autojoin) { this.$router.push({ name: 'join', - params: { - server: this.GET_CONFIG.autoJoinServer, - room: this.GET_CONFIG.autoJoinRoom, - password: this.GET_CONFIG.autoJoinPassword, - }, + params: this.GET_CONFIG.autojoin, }); } },