clear the list of joined/parted users

This commit is contained in:
fourtf
2018-05-27 13:37:49 +02:00
parent 0fed9ca5d2
commit 9fc791a440
2 changed files with 8 additions and 4 deletions
+2
View File
@@ -232,6 +232,7 @@ void TwitchChannel::addJoinedUser(const QString &user)
this->addMessage(messages::Message::createSystemMessage("Users joined: " +
this->joinedUsers.join(", ")));
this->joinedUsers.clear();
this->joinedUsersMergeQueued = false;
});
}
@@ -258,6 +259,7 @@ void TwitchChannel::addPartedUser(const QString &user)
this->addMessage(messages::Message::createSystemMessage("Users parted: " +
this->partedUsers.join(", ")));
this->partedUsers.clear();
this->partedUsersMergeQueued = false;
});