Fixed autojoin
This commit is contained in:
parent
2781c7dc2f
commit
5ec56b25e4
|
@ -82,14 +82,10 @@ export default {
|
||||||
created() {
|
created() {
|
||||||
this.fetchServersHealth();
|
this.fetchServersHealth();
|
||||||
|
|
||||||
if (this.GET_CONFIG.autoJoin) {
|
if (this.GET_CONFIG.autojoin) {
|
||||||
this.$router.push({
|
this.$router.push({
|
||||||
name: 'join',
|
name: 'join',
|
||||||
params: {
|
params: this.GET_CONFIG.autojoin,
|
||||||
server: this.GET_CONFIG.autoJoinServer,
|
|
||||||
room: this.GET_CONFIG.autoJoinRoom,
|
|
||||||
password: this.GET_CONFIG.autoJoinPassword,
|
|
||||||
},
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue