webtorrent / create-torrent

Create .torrent files
https://webtorrent.io
MIT License
341 stars 93 forks source link

Default trackers differ in `index.js` and `README.md` #168

Closed rwv closed 1 year ago

rwv commented 2 years ago

What version of this package are you using?

master branch

What operating system, Node.js, and npm version?

N/A

What happened?

Default trackers differ in index.js and README.md

https://github.com/webtorrent/create-torrent/blob/83ac5172d55fb89ab530fa21ad31fbdb2af3773a/index.js#L18-L26

https://github.com/webtorrent/create-torrent/blob/83ac5172d55fb89ab530fa21ad31fbdb2af3773a/README.md?plain=1#L78-L87

What did you expect to happen?

They are same.

Are you willing to submit a pull request to fix this bug?

Yes

qascade commented 2 years ago

These are the trackers that are not in index.js

['udp://tracker.openbittorrent.com:80'],
['udp://tracker.internetwarriors.net:1337'],
['udp://exodus.desync.com:6969'],
['wss://tracker.fastcast.nz']

What is the need here, do we want to take union of all the trackers or do we want to exclude some trackers from the list?

ThaUnknown commented 1 year ago

226