1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-25 22:37:27 -04:00

Fixed: Parses size in Wombles Description field so min/maxsize checks works on Wombles feed.

This commit is contained in:
Taloth Saldono
2016-02-17 23:22:22 +01:00
parent 21c901eab4
commit 3b57194d47
4 changed files with 132 additions and 1004 deletions
@@ -5,10 +5,9 @@ namespace NzbDrone.Core.Indexers.Wombles
{
public class WomblesRssParser : RssParser
{
protected override long GetSize(XElement item)
public WomblesRssParser()
{
// TODO: this can be found in the description element.
return 0;
ParseSizeInDescription = true;
}
protected override DateTime GetPublishDate(XElement item)