mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-10-03 01:01:34 +02:00
Merge branch 'markus101'
Conflicts: NzbDrone.Core/Providers/Indexer/IndexerProviderBase.cs
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
using System.ServiceModel.Syndication;
|
||||
using NzbDrone.Core.Model;
|
||||
using NzbDrone.Core.Providers.Core;
|
||||
using SubSonic.Repository;
|
||||
|
||||
@@ -32,5 +33,16 @@ namespace NzbDrone.Core.Providers.Indexer
|
||||
{
|
||||
return item.Id;
|
||||
}
|
||||
|
||||
protected override EpisodeParseResult CustomParser(SyndicationItem item, EpisodeParseResult currentResult)
|
||||
{
|
||||
var quality = Parser.ParseQuality(item.Summary.Text);
|
||||
var proper = Parser.ParseProper(item.Summary.Text);
|
||||
|
||||
currentResult.Quality = quality;
|
||||
currentResult.Proper = proper;
|
||||
|
||||
return currentResult;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user