fix: make genre enrichment non-blocking in DeezerMetadataService

This commit is contained in:
2026-02-10 12:56:13 -05:00
parent f55a8bfe43
commit e9f527d7dc

View File

@@ -219,9 +219,9 @@ public class DeezerMetadataService : IMusicMetadataService
{ {
await _genreEnrichment.EnrichSongGenreAsync(song); await _genreEnrichment.EnrichSongGenreAsync(song);
} }
catch (Exception ex) catch
{ {
_logger.LogDebug(ex, "Failed to enrich genre for {Title}", song.Title); // Silently ignore genre enrichment failures
} }
}); });
} }