ws client: drop support for old tracker servers

Old tracker server versions don’t send data.action === ‘announce’
This commit is contained in:
Feross Aboukhadijeh 2016-03-23 21:26:52 -07:00
parent 8ed0e14ef4
commit 4159d35cfc

View File

@ -183,7 +183,7 @@ WebSocketTracker.prototype._onSocketData = function (data) {
return
}
if (data.action === 'announce' || data.offer || data.answer) {
if (data.action === 'announce') {
self._onAnnounceResponse(data)
} else if (data.action === 'scrape') {
self._onScrapeResponse(data)