IsEnoughSpaceForDownload() fix. Case when mwm size became smaller.

This commit is contained in:
Vladimir Byko-Ianko 2017-05-10 12:48:08 +03:00 committed by r.kuznetsov
parent a324094b7a
commit f4a6deb5a4

View file

@ -33,7 +33,9 @@ bool IsEnoughSpaceForDownload(TCountryId const & countryId, Storage const & stor
{
NodeAttrs nodeAttrs;
storage.GetNodeAttrs(countryId, nodeAttrs);
return IsEnoughSpaceForDownload(nodeAttrs.m_mwmSize - nodeAttrs.m_localMwmSize);
return IsEnoughSpaceForDownload(nodeAttrs.m_mwmSize > nodeAttrs.m_localMwmSize
? nodeAttrs.m_mwmSize - nodeAttrs.m_localMwmSize
: 0);
}
bool IsEnoughSpaceForUpdate(TCountryId const & countryId, Storage const & storage)