diff --git a/lib/bloc/list_importable_album.dart b/lib/bloc/list_importable_album.dart index 4e1ca6d6..e9ef1100 100644 --- a/lib/bloc/list_importable_album.dart +++ b/lib/bloc/list_importable_album.dart @@ -103,8 +103,9 @@ class ListImportableAlbumBloc final fileRepo = FileRepo(FileCachedDataSource()); final albumRepo = AlbumRepo(AlbumCachedDataSource()); final albums = (await ListAlbum(fileRepo, albumRepo)(ev.account) - .where((event) => event is Album) - .toList()).cast(); + .where((event) => event is Album) + .toList()) + .cast(); final importedDirs = albums.map((a) { if (a.provider is! AlbumDirProvider) { return [];