fix(mobile): restrict trashed asset migration to Android platform (#26726)

* fix(migration): restrict trashed asset migration to Android platform

* playbackStyle migration add different log depending on platform
This commit is contained in:
Luis Nachtigall
2026-03-09 15:56:27 +01:00
committed by GitHub
parent 422111d26e
commit df0c86920d

View File

@@ -420,6 +420,7 @@ Future<void> _populateLocalAssetPlaybackStyle(Drift db) async {
});
}
if (Platform.isAndroid) {
final trashedAssetMap = await nativeApi.getTrashedAssets();
for (final entry in trashedAssetMap.cast<String, List<Object?>>().entries) {
final assets = entry.value.cast<PlatformAsset>();
@@ -433,8 +434,10 @@ Future<void> _populateLocalAssetPlaybackStyle(Drift db) async {
}
});
}
dPrint(() => "[MIGRATION] Successfully populated playbackStyle for local and trashed assets");
} else {
dPrint(() => "[MIGRATION] Successfully populated playbackStyle for local assets");
}
} catch (error) {
dPrint(() => "[MIGRATION] Error while populating playbackStyle: $error");
}