Skip to content

Commit

Permalink
fix to partial data download issue (#1724)
Browse files Browse the repository at this point in the history
  • Loading branch information
har13205 authored Jun 25, 2024
1 parent 9e5a831 commit d9f2936
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions SampleViewer/SampleManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -416,12 +416,12 @@ bool SampleManager::dataItemsExists()

for (auto dataItem : *currentSample()->dataItems())
{
if (dataItem->exists())
if (!dataItem->exists())
{
return true;
return false;
}
}
return false;
return true;
}

void SampleManager::downloadAllDataItems()
Expand Down

0 comments on commit d9f2936

Please sign in to comment.