Fix downloading videos of size > INT_MAX to disk.

This commit is contained in:
John Preston 2022-08-16 08:56:30 +03:00
parent c8c3f43853
commit 184ebc865c
1 changed files with 1 additions and 1 deletions

View File

@ -994,7 +994,7 @@ void Reader::checkForDownloaderChange(int checkItemsCount) {
const auto changed = std::adjacent_find(
end - checkItemsCount,
end,
[](int first, int second) { return (second <= first); });
[](uint32 first, uint32 second) { return (second <= first); });
if (changed != end) {
_offsetsForDownloader.erase(
begin(_offsetsForDownloader),