This commit is contained in:
Thibault Deckers 2024-07-17 21:38:59 +02:00
parent 2d143f139f
commit 4cf5a95d89
2 changed files with 5 additions and 1 deletions

View file

@ -14,6 +14,10 @@ All notable changes to this project will be documented in this file.
- target Android 15 (API 35) - target Android 15 (API 35)
### Fixed
- crash when cataloguing some PNG files
## <a id="v1.11.5"></a>[v1.11.5] - 2024-07-11 ## <a id="v1.11.5"></a>[v1.11.5] - 2024-07-11
### Added ### Added

View file

@ -50,7 +50,7 @@ class MediaStoreSource extends CollectionSource {
analysisController: analysisController, analysisController: analysisController,
directory: directory, directory: directory,
loadTopEntriesFirst: loadTopEntriesFirst, loadTopEntriesFirst: loadTopEntriesFirst,
canAnalyze: canAnalyze && _safeMode, canAnalyze: canAnalyze && !_safeMode,
)); ));
} }