diff --git a/CHANGELOG.md b/CHANGELOG.md index f0b33e35..8603a8ec 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ ### Added - "Filter Contributing Artists in Album Artist" setting - strips featured/contributing artists from Album Artist metadata tag -- Library scan notifications (Android) - shows progress, completion, failure, and cancellation status +- Library scan notifications (Android and iOS) - shows progress, completion, failure, and cancellation status - Collapsible "Artist Name Filters" section in download settings UI ### Fixed diff --git a/lib/providers/local_library_provider.dart b/lib/providers/local_library_provider.dart index befe9171..2f4ce8f6 100644 --- a/lib/providers/local_library_provider.dart +++ b/lib/providers/local_library_provider.dart @@ -578,7 +578,6 @@ class LocalLibraryNotifier extends Notifier { required int totalFiles, required String? currentFile, }) async { - if (!Platform.isAndroid) return; try { await _notificationService.showLibraryScanProgress( progress: progress, @@ -596,7 +595,6 @@ class LocalLibraryNotifier extends Notifier { required int excludedDownloadedCount, required int errorCount, }) async { - if (!Platform.isAndroid) return; try { await _notificationService.showLibraryScanComplete( totalTracks: totalTracks, @@ -609,7 +607,6 @@ class LocalLibraryNotifier extends Notifier { } Future _showScanFailedNotification(String message) async { - if (!Platform.isAndroid) return; try { await _notificationService.showLibraryScanFailed(message); } catch (e) { @@ -618,7 +615,6 @@ class LocalLibraryNotifier extends Notifier { } Future _showScanCancelledNotification() async { - if (!Platform.isAndroid) return; try { await _notificationService.showLibraryScanCancelled(); } catch (e) {