[notifications] empty file loading fix

This commit is contained in:
Arsentiy Milchakov 2019-10-15 14:54:38 +03:00 committed by Daria Volvenkova
parent bcf6966318
commit 8df4de35e2

View file

@ -64,9 +64,8 @@ bool QueueStorage::Load(std::vector<int8_t> & dst)
catch (FileReader::Exception const &)
{
dst.clear();
return false;
}
return true;
return !dst.empty();
}
} // namespace notifications