From b9c123ecbc583738cd60cc724dc72aa8d320c25c Mon Sep 17 00:00:00 2001 From: N-Pex Date: Tue, 5 Dec 2023 17:23:09 +0100 Subject: [PATCH] Fix missing return in getlink --- src/components/GetLink.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/GetLink.vue b/src/components/GetLink.vue index 48574c3..d062129 100644 --- a/src/components/GetLink.vue +++ b/src/components/GetLink.vue @@ -189,7 +189,7 @@ export default { }, loadLoginFlows() { var user = Object.assign({}, this.user); - util.getMatrixBaseUrl(user, this.$config) + return util.getMatrixBaseUrl(user, this.$config) .then((baseUrl) => { if (baseUrl !== this.currentLoginServer) { this.currentLoginServer = baseUrl;