Fix minor typos

This commit is contained in:
Yuri Chornoivan
2021-01-09 09:19:11 +02:00
parent 2cb38ad1ea
commit a82b9dc14e
7 changed files with 9 additions and 9 deletions

View File

@@ -138,7 +138,7 @@ void ActionsHandler::joinRoom(const QString &alias)
auto joinRoomJob = m_connection->joinRoom(alias, QStringList{knownServer});
Quotient::JoinRoomJob::connect(joinRoomJob, &JoinRoomJob::failure, [=] {
Q_EMIT showMessage(MessageType::Error, i18n("Serveur error when joining the room \"%1\": %2",
Q_EMIT showMessage(MessageType::Error, i18n("Server error when joining the room \"%1\": %2",
joinRoomJob->errorString()));
});
Quotient::JoinRoomJob::connect(joinRoomJob, &JoinRoomJob::success, [this, joinRoomJob] {