mirror of https://github.com/Sonarr/Sonarr
New: Show limited matching for aliases that are limited to specific formats/release groups
This commit is contained in:
parent
0d99c87d87
commit
5923b4ae0d
|
@ -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
|
||||
};
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue