Add Clear Button on WebUI for BroadCast.

This commit is contained in:
Phenom 2016-04-15 19:08:10 +02:00
parent cb6c2c9199
commit 4dd0f591f4
2 changed files with 26 additions and 1 deletions

View file

@ -876,7 +876,12 @@ void ChatHandler::handleClearLobby(Request &req, Response &resp)
{
ChatLobbyId id = 0;
req.mStream << makeKeyValueReference("id", id);
notifyChatCleared(ChatId(id));
if (id !=0) {
notifyChatCleared(ChatId(id));
} else {
//Is BroadCast
notifyChatCleared(ChatId("B"));
}
resp.setOk();
}