From e71e518d308388910763a4d2bc41e13c8f7a1123 Mon Sep 17 00:00:00 2001 From: Leonardo Galli Date: Wed, 7 Feb 2018 00:10:33 +0100 Subject: [PATCH] Fixed: Zooqle torrents not getting added, since their torrent file is messed up. Fixes #1516 --- src/MonoTorrent/BEncoding/IBEncodedValue.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/MonoTorrent/BEncoding/IBEncodedValue.cs b/src/MonoTorrent/BEncoding/IBEncodedValue.cs index 357ec5739..8d168c5a0 100644 --- a/src/MonoTorrent/BEncoding/IBEncodedValue.cs +++ b/src/MonoTorrent/BEncoding/IBEncodedValue.cs @@ -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)); }