Remove unused arg from Client.whois

This commit is contained in:
Simon Ser 2021-05-31 17:04:52 +02:00
parent e271a3cd0e
commit 02145b45ad

View file

@ -293,7 +293,7 @@ export default class Client extends EventTarget {
}
}
whois(target, callback) {
whois(target) {
var targetCM = this.cm(target);
var msg = { command: "WHOIS", params: [target] };
return this.roundtrip(msg, (event) => {