From 1335534aa71519ce55bee226ac67c1b0188f4b4b Mon Sep 17 00:00:00 2001 From: Carl Schwan Date: Fri, 26 Feb 2021 18:04:14 +0100 Subject: Apply suggestion Co-authored-by: Alexey Rusakov --- lib/connection.cpp | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/lib/connection.cpp b/lib/connection.cpp index 91de2e4e..579c7920 100644 --- a/lib/connection.cpp +++ b/lib/connection.cpp @@ -1747,11 +1747,10 @@ QStringList Connection::stableRoomVersions() const bool Connection::canChangePassword() const { - if (!d->capabilities.changePassword) { - // assume we can - return true; - } - return d->capabilities.changePassword->enabled; + // By default assume we can + return d->capabilities.changePassword + ? d->capabilities.changePassword->enabled + : true; } inline bool roomVersionLess(const Connection::SupportedRoomVersion& v1, -- cgit v1.2.3