From 5c69b56cd548caf64fa6f929415bd5bf38680ff9 Mon Sep 17 00:00:00 2001 From: bendikro Date: Tue, 19 Apr 2016 00:04:03 +0200 Subject: [PATCH] [Core] Fix adding magnets failing --- deluge/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deluge/common.py b/deluge/common.py index 65dea2ca9..400f0ec98 100644 --- a/deluge/common.py +++ b/deluge/common.py @@ -623,7 +623,7 @@ def get_magnet_info(uri): if info_hash: if not name: name = info_hash - return {"name": name, "info_hash": info_hash, "files_tree": ''} + return {"name": name, "info_hash": info_hash.lower(), "files_tree": ''} return False