diff options
author | Nicolas Werner <nicolas.werner@hotmail.de> | 2023-01-10 05:54:58 +0100 |
---|---|---|
committer | Nicolas Werner <nicolas.werner@hotmail.de> | 2023-01-10 05:54:58 +0100 |
commit | 2ca5f87cdfc81a5560291df552e18a6f7c227ee5 (patch) | |
tree | 3f78f9c28a7e6f89aae5436effab0bb3e1d21341 /src/LoginPage.cpp | |
parent | Properly regenerate emoji using regional indicators (diff) | |
download | nheko-2ca5f87cdfc81a5560291df552e18a6f7c227ee5.tar.xz |
Update supported Matrix version
Diffstat (limited to 'src/LoginPage.cpp')
-rw-r--r-- | src/LoginPage.cpp | 3 |
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; } |