diff options
author | Ville Ranki <ville.ranki@iki.fi> | 2019-06-11 11:59:40 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-11 11:59:40 +0300 |
commit | a19e12544d174588bb99d1d9d5b2576f0ea1e037 (patch) | |
tree | 9ba0f22073bfbf4ceddf38b36fa8bfa8098a9589 /lib | |
parent | 7591ec34cee15a58611408a996bdb1b92b6ffb98 (diff) | |
download | libquotient-a19e12544d174588bb99d1d9d5b2576f0ea1e037.tar.gz libquotient-a19e12544d174588bb99d1d9d5b2576f0ea1e037.zip |
Comment change as requested
Co-Authored-By: Kitsune Ral <Kitsune-Ral@users.sf.net>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/connection.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/connection.cpp b/lib/connection.cpp index 27211a77..af2aa2ab 100644 --- a/lib/connection.cpp +++ b/lib/connection.cpp @@ -792,7 +792,7 @@ ForgetRoomJob* Connection::forgetRoom(const QString& id) { auto leaveJob = room->leaveRoom(); connect(leaveJob, &BaseJob::result, this, [this, leaveJob, forgetJob, room] { - // After leave, continue if there is no error or the room id is not found (IncorrectRequestError) + // After leave, continue if there is no error or the room id is not found if(!leaveJob->error() || leaveJob->error() == BaseJob::StatusCode::UnknownObjectError) { forgetJob->start(connectionData()); // If the matching /sync response hasn't arrived yet, mark the room |