mirror of
https://github.com/webtorrent/bittorrent-tracker.git
synced 2024-12-14 19:36:24 +00:00
40202a00b7
It's non-standard for a callback function to take a non-error argument in the first position. So instead of the filter callback accepting three types of arguments: cb(true) // allowed cb(false) // disallowed cb(new Error('custom message')) // disallowed with custom message It now accepts two forms: cb(new Error('custom message')) // disallowed with custom message cb(null) // allowed |
||
---|---|---|
.. | ||
client-large-torrent.js | ||
client-magnet.js | ||
client-ws-socket-pool.js | ||
client.js | ||
common.js | ||
destroy.js | ||
evict.js | ||
filter.js | ||
querystring.js | ||
scrape.js | ||
server.js | ||
stats.js |