1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-14 11:23:42 +02:00

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

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 @@ public static AlternateTitleResource ToResource(this SceneMapping sceneMapping)
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
};
}
}