We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi there,
you added "support" for Web-Seeds here: ebb5c29
But you forgot to add it in (at least) TorrentMetadata and TorrentSerializer, so the info gets lost, when doing this:
private void makeTorrent(File torrentFile) { final var builder = new MetadataBuilder(); // builder.setXYZ(...); saveTorrent(builder.build(), torrentFile); } private void saveTorrent(TorrentMetadata torrent, Path file) throws IOException { try (FileOutputStream fos = new FileOutputStream(file.toFile())) { fos.write(new TorrentSerializer().serialize(torrent)); } }
The WebSeeds are missing in the saved torrent file.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi there,
you added "support" for Web-Seeds here:
ebb5c29
But you forgot to add it in (at least) TorrentMetadata and TorrentSerializer, so the info gets lost, when doing this:
The WebSeeds are missing in the saved torrent file.
The text was updated successfully, but these errors were encountered: