v1.1.0+30
All checks were successful
Flutter Schmutter / build (push) Successful in 3m27s

This commit is contained in:
2025-06-06 12:58:21 +02:00
parent c7d996a402
commit f1eb52518b
11 changed files with 192 additions and 47 deletions

View File

@ -82,12 +82,14 @@ class MediaProvider extends ChangeNotifier {
tag: tag,
);
addMediaItems(newMedia);
if(_mediaItems != newMedia) {
addMediaItems(newMedia);
if (notify) notifyListeners();
}
} catch (e) {
debugPrint('Fehler beim Laden der Medien: $e');
} finally {
_isLoading = false;
if (notify) notifyListeners();
}
}
}