1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-23 22:25:56 -04:00

Fixed: Queue not loading when it contains unmapped releases

This commit is contained in:
Bogdan
2023-07-11 19:45:54 +03:00
committed by GitHub
parent c9e3890f73
commit 9854884ed3
+1 -1
View File
@@ -52,7 +52,7 @@ namespace Sonarr.Api.V3.Queue
}
var customFormats = model.RemoteEpisode?.CustomFormats;
var customFormatScore = model.Series.QualityProfile.Value.CalculateCustomFormatScore(customFormats);
var customFormatScore = model.Series?.QualityProfile?.Value?.CalculateCustomFormatScore(customFormats) ?? 0;
return new QueueResource
{