New: Show limited matching for aliases that are limited to specific formats/release groups

This commit is contained in:
Mark McDowall 2021-10-01 10:48:18 -07:00
parent 0d99c87d87
commit 5923b4ae0d
1 changed files with 10 additions and 2 deletions

View File

@ -1,4 +1,5 @@
using NzbDrone.Core.DataAugmentation.Scene;
using NzbDrone.Common.Extensions;
using NzbDrone.Core.DataAugmentation.Scene;
namespace Sonarr.Api.V3.Series
{
@ -20,13 +21,20 @@ namespace Sonarr.Api.V3.Series
return null;
}
var comment = sceneMapping.Comment;
if (comment.IsNullOrWhiteSpace() && sceneMapping.FilterRegex.IsNotNullOrWhiteSpace())
{
comment = "Limited matching";
}
return new AlternateTitleResource
{
Title = sceneMapping.Title,
SeasonNumber = sceneMapping.SeasonNumber,
SceneSeasonNumber = sceneMapping.SceneSeasonNumber,
SceneOrigin = sceneMapping.SceneOrigin,
Comment = sceneMapping.Comment
Comment = comment
};
}
}