Skip to content

Commit

Permalink
Fixes issue #485
Browse files Browse the repository at this point in the history
  • Loading branch information
kebekus committed Feb 16, 2025
1 parent 126b045 commit e11dfde
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

## [2.32.9] - 2025-02-16

### Fixed
- The list of available maps was downloaded, but not processed on first startup.
As a result, new users were shown a message that maps are not available for
their location. (#485)

- Android users experienced very infrequent, but annoying ANRs.

### Changed
- Show list of all traffic on the page "Information/Traffic Data Receiver".
Adjust the manual accordingly.
Expand Down
2 changes: 1 addition & 1 deletion src/dataManagement/Downloadable_SingleFile.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -673,6 +673,7 @@ void DataManagement::Downloadable_SingleFile::downloadFileFinished()
lockFile.lock();
m_saveFile->commit();
lockFile.unlock();
m_hasFile = QFile::exists(m_fileName);
emit fileContentChanged();

// Delete the data structures for the download
Expand All @@ -685,7 +686,6 @@ void DataManagement::Downloadable_SingleFile::downloadFileFinished()
{
emit updateSizeChanged();
}
m_hasFile = QFile::exists(m_fileName);
emit downloadingChanged();
}

Expand Down

0 comments on commit e11dfde

Please sign in to comment.