From 8eb0b02adbd7a05c39731c52c72c4d1f7e93af4a Mon Sep 17 00:00:00 2001 From: Ade Date: Sun, 7 Dec 2014 14:20:23 +1300 Subject: [PATCH] utorrent, hash is now upper case --- headphones/utorrent.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/headphones/utorrent.py b/headphones/utorrent.py index e74f6958..c0e4f264 100644 --- a/headphones/utorrent.py +++ b/headphones/utorrent.py @@ -215,7 +215,7 @@ def dirTorrent(hash, cacheid=None, return_name=None): cacheid = torrentList['torrentc'] for torrent in torrents: - if torrent[0].lower() == hash: + if torrent[0].upper() == hash: if not return_name: return torrent[26], cacheid else: