From 12c1e82f111fbe9508c5d089993608f1d36232f7 Mon Sep 17 00:00:00 2001 From: Andrew Chronister Date: Tue, 19 Feb 2019 21:45:16 -0800 Subject: [PATCH] s/var/let --- src/SlashCommands.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SlashCommands.js b/src/SlashCommands.js index d675500f07..00afc1a4ee 100644 --- a/src/SlashCommands.js +++ b/src/SlashCommands.js @@ -75,7 +75,7 @@ export const CommandMap = { args: '', description: _td('Prepends ¯\\_(ツ)_/¯ to a plain-text message'), runFn: function(roomId, args) { - var message = '¯\\_(ツ)_/¯' + let message = '¯\\_(ツ)_/¯' if (args) { message = message + ' ' + args }