mirror of
https://github.com/tribufu/node-gamedig
synced 2026-05-06 15:17:36 +00:00
Fix issue with minecraft SRV record resolving directly to IP
This commit is contained in:
parent
1d2198373f
commit
a771dab222
1 changed files with 2 additions and 2 deletions
|
|
@ -18,8 +18,8 @@ module.exports = require('./gamespy3').extend({
|
|||
self.options.port = line.port;
|
||||
var srvhost = line.name;
|
||||
|
||||
if(self.options.host.match(/\d+\.\d+\.\d+\.\d+/)) {
|
||||
self.options.host = srvhost;
|
||||
if(srvhost.match(/\d+\.\d+\.\d+\.\d+/)) {
|
||||
self.options.address = srvhost;
|
||||
c();
|
||||
} else {
|
||||
// resolve yet again
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue