1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2025-03-03 01:55:33 +00:00

Fixed NzbDownloadUrl for NzbsRUsProvider

This commit is contained in:
Mark McDowall 2011-04-27 08:09:38 -07:00
parent 6f46a1211e
commit fbdc752f77

View file

@ -34,7 +34,7 @@ public override string Name
protected override string NzbDownloadUrl(SyndicationItem item)
{
return item.Links[0].ToString();
return item.Links[0].Uri.ToString();
}
}
}