Various Qt6 fixes
This commit is contained in:
@@ -158,8 +158,8 @@ void Login::login()
|
||||
|
||||
// Some servers do not have a .well_known file. So we login via the username part from the mxid,
|
||||
// rather than with the full mxid, as that would lead to an invalid user.
|
||||
QStringRef username(&m_matrixId, 1, m_matrixId.indexOf(":") - 1);
|
||||
m_connection->loginWithPassword(username.toString(), m_password, m_deviceName, QString());
|
||||
auto username = m_matrixId.mid(1, m_matrixId.indexOf(":") - 1);
|
||||
m_connection->loginWithPassword(username, m_password, m_deviceName, QString());
|
||||
}
|
||||
|
||||
bool Login::supportsPassword() const
|
||||
|
||||
Reference in New Issue
Block a user