1 files changed, 2 insertions, 1 deletions
diff --git a/src/LoginPage.cpp b/src/LoginPage.cpp
index a1222b62..6c7e49fd 100644
--- a/src/LoginPage.cpp
+++ b/src/LoginPage.cpp
@@ -188,12 +188,13 @@ LoginPage::checkHomeserverVersion()
"v1.2",
"v1.3",
"v1.4",
+ "v1.5",
};
return supported.count(v) != 0;
}) == versions.versions.cend()) {
emit versionErrorCb(
tr("The selected server does not support a version of the Matrix protocol, that this "
- "client understands (v1.1 to v1.4). You can't sign in."));
+ "client understands (v1.1 to v1.5). You can't sign in."));
return;
}
|