mirror of
https://github.com/webtorrent/bittorrent-tracker.git
synced 2025-02-23 13:49:02 +00:00
Fix filter function
This commit is contained in:
parent
58a1c5d879
commit
5ad210b7e1
33
server.js
33
server.js
@ -659,32 +659,27 @@ Server.prototype._onAnnounce = function (params, cb) {
|
||||
|
||||
self.getSwarm(params.info_hash, function (err, swarm) {
|
||||
if (err) return cb(err)
|
||||
if (swarm) {
|
||||
announce(swarm)
|
||||
} else {
|
||||
createSwarm()
|
||||
}
|
||||
})
|
||||
|
||||
function createSwarm () {
|
||||
if (self._filter) {
|
||||
self._filter(params.info_hash, params, function (err) {
|
||||
// Precense of err means that this info_hash is disallowed
|
||||
if (err) {
|
||||
cb(err)
|
||||
} else {
|
||||
self.createSwarm(params.info_hash, function (err, swarm) {
|
||||
if (err) return cb(err)
|
||||
announce(swarm)
|
||||
})
|
||||
// Precense of err means that this torrent or user is disallowd
|
||||
if (err) cb(err)
|
||||
else {
|
||||
if (swarm) announce(swarm)
|
||||
else createSwarm()
|
||||
}
|
||||
})
|
||||
} else {
|
||||
self.createSwarm(params.info_hash, function (err, swarm) {
|
||||
if (err) return cb(err)
|
||||
announce(swarm)
|
||||
})
|
||||
if (swarm) announce(swarm)
|
||||
else createSwarm()
|
||||
}
|
||||
})
|
||||
|
||||
function createSwarm() {
|
||||
self.createSwarm(params.info_hash, function (err, swarm) {
|
||||
if (err) return cb(err)
|
||||
announce(swarm)
|
||||
})
|
||||
}
|
||||
|
||||
function announce (swarm) {
|
||||
|
Loading…
Reference in New Issue
Block a user