forked from organicmaps/organicmaps
[new downloader][android] fix: Onmap downloader fixes.
This commit is contained in:
parent
2a43da3908
commit
18571c4c96
2 changed files with 3 additions and 2 deletions
|
@ -454,7 +454,7 @@ static void StatusChangedCallback(shared_ptr<jobject> const & listenerRef, TCoun
|
|||
NodeStatuses ns;
|
||||
GetStorage().GetNodeStatuses(countryId, ns);
|
||||
|
||||
TBatchedData const data(countryId, ns.m_status, ns.m_error, ns.m_groupNode);
|
||||
TBatchedData const data(countryId, ns.m_status, ns.m_error, !ns.m_groupNode);
|
||||
g_batchedCallbackData[*listenerRef].push_back(move(data));
|
||||
|
||||
if (!g_isBatched)
|
||||
|
|
|
@ -91,7 +91,8 @@ public class OnmapDownloader implements MwmActivity.LeftAnimationTrackListener
|
|||
if (showFrame)
|
||||
{
|
||||
boolean enqueued = (mCurrentCountry.status == CountryItem.STATUS_ENQUEUED);
|
||||
boolean progress = (mCurrentCountry.status == CountryItem.STATUS_PROGRESS);
|
||||
boolean progress = (mCurrentCountry.status == CountryItem.STATUS_PROGRESS &&
|
||||
!mCurrentCountry.present);
|
||||
boolean failed = (mCurrentCountry.status == CountryItem.STATUS_FAILED);
|
||||
|
||||
showFrame = (enqueued || progress || failed ||
|
||||
|
|
Loading…
Add table
Reference in a new issue