Fixed a bug where CBR Rating had no link.

This commit is contained in:
Joseph Milazzo 2025-04-22 17:53:58 -05:00
parent d78240cd03
commit 7332319824
3 changed files with 8 additions and 5 deletions

View file

@ -485,6 +485,7 @@ public class ExternalMetadataService : IExternalMetadataService
{
var rating = _mapper.Map<ExternalRating>(r);
rating.SeriesId = externalSeriesMetadata.SeriesId;
rating.ProviderUrl = r.ProviderUrl;
return rating;
}).ToList();