Skip to content

Commit 2fe7424

Browse files
committed
fix: allow compilation provider to suggest better albums even when current album not in results
1 parent bdd4c9e commit 2fe7424

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/src/musicbrainz/compilation_provider.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -789,9 +789,9 @@ impl CompilationToCanonicalProvider {
789789
.join(", ")
790790
);
791791
log::debug!(
792-
"Since current album not found in results, defaulting to assuming it's NOT a compilation (returning None)"
792+
"Current album not found in results - will still check if there's a better album available"
793793
);
794-
return Ok(None);
794+
// Don't return early - continue to check if there's a better album
795795
}
796796
}
797797

0 commit comments

Comments
 (0)