Get rid of a wild var keyword

This commit is contained in:
Simon Ser 2021-09-06 16:53:25 +02:00
parent 0137a95268
commit ed41f08ba4

View file

@ -272,7 +272,7 @@ export default {
app.open(nick); app.open(nick);
if (args.length > 1) { if (args.length > 1) {
var text = args.slice(1).join(" "); let text = args.slice(1).join(" ");
app.privmsg(nick, text); app.privmsg(nick, text);
} }
}, },