mirror of
https://github.com/zarzet/SpotiFLAC-Mobile.git
synced 2026-08-02 17:18:36 +02:00
9 lines
421 B
Dart
9 lines
421 B
Dart
enum ReEnrichOperationScope { singleFile, batch }
|
|
|
|
/// A single-file action may deliberately repair a stale release identity,
|
|
/// such as a playlist name stored in the album tag. Batch matching keeps the
|
|
/// conservative album-mismatch guard because one false match has a much larger
|
|
/// blast radius.
|
|
bool allowsReleaseIdentityReplacement(ReEnrichOperationScope scope) =>
|
|
scope == ReEnrichOperationScope.singleFile;
|