NZBClub returning wrong url. fixes #116

This commit is contained in:
Ruud
2012-04-20 20:56:52 +02:00
parent 4ae91fa17a
commit 984ffe38bf
@@ -68,8 +68,8 @@ class NZBClub(NZBProvider, RSS):
'name': toUnicode(self.getTextElement(nzb, "title")),
'age': self.calculateAge(int(time.mktime(parse(date).timetuple()))),
'size': tryInt(size) / 1024 / 1024,
'url': enclosure['url'],
'download': enclosure['url'].replace(' ', '_'),
'url': enclosure['url'].replace(' ', '_'),
'download': self.download,
'detail_url': self.getTextElement(nzb, "link"),
'description': description,
}