Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/blame/commit/e436072dcc44e04e5ec001b51fa712eca8d6b0d1/NzbDrone.Core/Indexers/NzbClub/NzbClubParser.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Radarr/NzbDrone.Core/Indexers/NzbClub/NzbClubParser.cs

36 lines
1.1 KiB

using System;
using System.ServiceModel.Syndication;
using System.Text.RegularExpressions;
using NzbDrone.Core.Model;
namespace NzbDrone.Core.Indexers.NzbClub
{
public class NzbClubParser : BasicRssParser
{
protected override IndexerParseResult PostProcessor(SyndicationItem item, IndexerParseResult currentResult)
{
if (currentResult != null)
{
var sizeString = Regex.Match(item.Summary.Text, @"Size:\s\d+\.\d{1,2}\s\w{2}\s", RegexOptions.IgnoreCase | RegexOptions.Compiled).Value;
currentResult.Size = GetReportSize(sizeString);
}
return currentResult;
}
protected override string GetTitle(SyndicationItem syndicationItem)
{
var title = ParseHeader(syndicationItem.Title.Text);
if (String.IsNullOrWhiteSpace(title))
return syndicationItem.Title.Text;
return title;
}
protected override string GetNzbInfoUrl(SyndicationItem item)
{
return item.Links[1].Uri.ToString();
}
}
}