@@ 186,7 186,7 @@ client.on('privmsg', msg => {
break
}
let bytes = parseInt(args[1])
- if (bytes == NaN || bytes <= 0 || bytes > config['bytes-max']) {
+ if (isNaN(bytes) || bytes <= 0 || bytes > config['bytes-max']) {
client.say(msg.target, 'ERROR Invalid byte amount (max: ' + config['bytes-max'] + ')')
break
}
@@ 200,7 200,7 @@ client.on('privmsg', msg => {
let nick = args[1]
if (nick == client.user.nick) {
let bytes = parseInt(args[2])
- if (bytes == NaN || bytes <= 0 || bytes > config['bytes-max']) {
+ if (isNaN(bytes) || bytes <= 0 || bytes > config['bytes-max']) {
client.say(msg.target, 'ERROR Invalid byte amount (max: ' + config['bytes-max'] + ')')
break
}
@@ 219,7 219,7 @@ client.on('privmsg', msg => {
break
}
let bytes = parseInt(args[1])
- if (bytes == NaN || bytes <= 0 || bytes > config['bytes-max']) {
+ if (isNaN(bytes) || bytes <= 0 || bytes > config['bytes-max']) {
client.say(msg.target, 'ERROR ' + msg.nick + ' Invalid byte amount (max: ' + config['bytes-max'] + ')')
break
}
@@ 233,7 233,7 @@ client.on('privmsg', msg => {
let nick = args[1]
if (nick == client.user.nick) {
let bytes = parseInt(args[2])
- if (bytes == NaN || bytes <= 0 || bytes > config['bytes-max']) {
+ if (isNaN(bytes) || bytes <= 0 || bytes > config['bytes-max']) {
client.say(msg.target, 'ERROR ' + msg.nick + ' Invalid byte amount (max: ' + config['bytes-max'] + ')')
break
}