mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-01-23 01:06:21 +01:00
Fix inconsistent default EXIF setting
This commit is contained in:
parent
04b546a85e
commit
e699dafc14
1 changed files with 1 additions and 1 deletions
|
@ -530,7 +530,7 @@ class _HomePhotosState extends State<HomePhotos>
|
||||||
bool ignoreFired = false,
|
bool ignoreFired = false,
|
||||||
}) {
|
}) {
|
||||||
if (_bloc.state is ScanDirBlocSuccess &&
|
if (_bloc.state is ScanDirBlocSuccess &&
|
||||||
Pref.inst().isEnableExifOr(false) &&
|
Pref.inst().isEnableExifOr() &&
|
||||||
(!_hasFiredMetadataTask.value || ignoreFired)) {
|
(!_hasFiredMetadataTask.value || ignoreFired)) {
|
||||||
MetadataTaskManager().addTask(MetadataTask(widget.account));
|
MetadataTaskManager().addTask(MetadataTask(widget.account));
|
||||||
_metadataTaskProcessTotalCount = _backingFiles
|
_metadataTaskProcessTotalCount = _backingFiles
|
||||||
|
|
Loading…
Reference in a new issue