Fixed: (RetroFlix) Update description and improve clean title

This commit is contained in:
Bogdan
2023-01-16 19:50:07 +02:00
committed by Qstick
parent 1529527af9
commit 4b7e47c397
2 changed files with 11 additions and 4 deletions

View File

@@ -304,7 +304,7 @@ namespace NzbDrone.Core.Indexers.Definitions
return jsonResponse.Resource.Select(torrent => new TorrentInfo
{
Guid = torrent.Id.ToString(),
Title = Regex.Replace(torrent.Name, @"(?i:\[REQUESTED\])", "").Trim(' ', '.'),
Title = CleanTitle(torrent.Name),
Description = torrent.ShortDescription,
Size = torrent.Size,
ImdbId = ParseUtil.GetImdbID(torrent.ImdbId).GetValueOrDefault(),
@@ -323,6 +323,13 @@ namespace NzbDrone.Core.Indexers.Definitions
UploadVolumeFactor = torrent.UploadVolumeFactor,
}).ToArray();
}
private static string CleanTitle(string title)
{
title = Regex.Replace(title, @"\[REQUEST(ED)?\]", string.Empty, RegexOptions.Compiled | RegexOptions.IgnoreCase);
return title.Trim(' ', '.');
}
}
public class SpeedAppSettingsValidator : AbstractValidator<SpeedAppSettings>