Merge pull request #1676 from realies/patch-1

handle empty client queries
This commit is contained in:
Jérémie Astori 2017-11-19 00:42:10 -05:00 committed by GitHub
commit 3af9a45087
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7,11 +7,15 @@ var Msg = require("../../models/msg");
exports.commands = ["query"];
exports.input = function(network, chan, cmd, args) {
if (args.length === 0) {
var target = args[0];
if (args.length === 0 || target.length === 0) {
chan.pushMessage(this, new Msg({
type: Msg.Type.ERROR,
text: "You cannot open a query window without an argument.",
}));
return;
}
var target = args[0];
var query = _.find(network.channels, {name: target});
if (typeof query !== "undefined") {
return;