1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-18 21:35:51 -04:00

Fixed: Zooqle torrents not getting added, since their torrent file is messed up.

Fixes #1516
This commit is contained in:
Leonardo Galli
2018-02-07 00:10:33 +01:00
parent f9049566c1
commit e71e518d30
+1 -1
View File
@@ -96,7 +96,7 @@ namespace MonoTorrent.BEncoding
if (stream == null)
throw new ArgumentNullException("stream");
return Decode(new RawReader(stream));
return Decode(new RawReader(stream, false));
}