From 0fea8dcb2423ec2e8aa544abb1e494f1140f9507 Mon Sep 17 00:00:00 2001 From: MagicalCodeMonkey Date: Sat, 21 Mar 2020 23:40:11 -0400 Subject: [PATCH] Fix connecting to recent rooms --- src/components/application/joinroom.vue | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/components/application/joinroom.vue b/src/components/application/joinroom.vue index 10013db8..48f8ac6b 100644 --- a/src/components/application/joinroom.vue +++ b/src/components/application/joinroom.vue @@ -310,7 +310,9 @@ export default { }, async recentConnect(recent) { console.log('Attempting to connect to', recent); - this.selectedServer = recent.server; + this.selectedServer = { + url: recent.server + }; this.room = recent.room; this.password = recent.password; await this.attemptConnect();