1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00

fix: Return value

This commit is contained in:
Diadlo 2017-09-13 09:18:55 +03:00
parent 533dd3103e
commit f97c776a87
No known key found for this signature in database
GPG Key ID: 5AF9F2E29107C727

View File

@ -109,5 +109,8 @@ bool AboutFriend::clearHistory()
History* const history = Nexus::getProfile()->getHistory();
if (history) {
history->removeFriendHistory(pk.toString());
return true;
}
return false;
}