2
0
mirror of https://github.com/telegramdesktop/tdesktop synced 2025-08-31 14:38:15 +00:00

version 0.8.16 stable - fixed select of a sticker reply

This commit is contained in:
John Preston
2015-05-21 00:33:39 +03:00
parent f35853c42e
commit 5bb83afc7a
10 changed files with 20 additions and 20 deletions

View File

@@ -645,7 +645,7 @@ namespace MTP {
dcMask %= _mtp_internal::dcShift;
for (Sessions::const_iterator i = sessions.cbegin(), e = sessions.cend(); i != e; ++i) {
if (((*i)->getDcWithShift() % _mtp_internal::dcShift) == dcMask) {
if (((*i)->getDcWithShift() % int(_mtp_internal::dcShift)) == dcMask) {
(*i)->restart();
}
}