You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
it seems monotorrent 3.0.2 produces invalid V2 torrent files. I tried to open it with qBittorrent, transmission, uTorrent and some online tools. They all either crash or report missing info.pieces in file. The torrent does not show content of torrents when added to transmission. The torrent contains single zip file, as below.
Code below works fine when using TorrentType.V1Only
private void CreateTorrentFile()
{
var zipFileName = "export.zip";
var torrentCreator = new TorrentCreator(TorrentType.V2Only);
var fileSource = new TorrentFileSource(zipFileName);
torrentCreator.Create(fileSource, $"{zipFileName}.torrent");
}
The text was updated successfully, but these errors were encountered:
alekw
changed the title
Malformed torrent created in TorrentType.V2Only
Malformed torrent created when TorrentType.V2Only
Dec 18, 2024
Hi,
it seems monotorrent 3.0.2 produces invalid V2 torrent files. I tried to open it with qBittorrent, transmission, uTorrent and some online tools. They all either crash or report missing info.pieces in file. The torrent does not show content of torrents when added to transmission. The torrent contains single zip file, as below.
Code below works fine when using TorrentType.V1Only
The text was updated successfully, but these errors were encountered: