1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-11 03:52:33 +02: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

View File

@ -96,7 +96,7 @@ public static BEncodedValue Decode(Stream stream)
if (stream == null)
throw new ArgumentNullException("stream");
return Decode(new RawReader(stream));
return Decode(new RawReader(stream, false));
}