mirror of
https://github.com/webtorrent/bittorrent-tracker.git
synced 2024-12-13 02:46:29 +00:00
[Client] Fix question mark in announceUrl
This commit is contained in:
parent
57cef88169
commit
8ee64c05f8
@ -274,7 +274,7 @@ Tracker.prototype._requestHttp = function (requestUrl, opts) {
|
||||
}
|
||||
}
|
||||
|
||||
get.concat(requestUrl + '?' + common.querystringStringify(opts), function (err, data, res) {
|
||||
get.concat(requestUrl + ((requestUrl.indexOf('?') !== -1) ? '&' : '?') + common.querystringStringify(opts), function (err, data, res) {
|
||||
if (err) return self.client.emit('warning', err)
|
||||
if (res.statusCode !== 200) return self.client.emit('warning', new Error('Non-200 response code ' + res.statusCode + ' from ' + requestUrl))
|
||||
if (data && data.length) self._handleResponse(requestUrl, data)
|
||||
|
Loading…
Reference in New Issue
Block a user