From 92d11522d2ed8edfe35070948b27ab0d82b643ff Mon Sep 17 00:00:00 2001 From: Ruud Date: Sat, 15 Jun 2013 00:06:14 +0200 Subject: [PATCH] Use id for HDBits torrent name --- couchpotato/core/providers/torrent/hdbits/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/couchpotato/core/providers/torrent/hdbits/main.py b/couchpotato/core/providers/torrent/hdbits/main.py index 53f9a7ed..7b0444ba 100644 --- a/couchpotato/core/providers/torrent/hdbits/main.py +++ b/couchpotato/core/providers/torrent/hdbits/main.py @@ -31,7 +31,7 @@ class HDBits(TorrentProvider): results.append({ 'id': result['id'], 'name': result['title'], - 'url': self.urls['download'] % (result['title'], result['id'], self.conf('passkey')), + 'url': self.urls['download'] % (result['id'], result['id'], self.conf('passkey')), 'detail_url': self.urls['detail'] % result['id'], 'size': self.parseSize(result['size']), 'seeders': tryInt(result['seeder']),