From e76fd7b1c40004574c15a3424e2935ffee55f3b9 Mon Sep 17 00:00:00 2001 From: calzoneman Date: Fri, 16 Jan 2015 19:35:26 -0600 Subject: [PATCH] Fix client motd issue --- www/js/callbacks.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/js/callbacks.js b/www/js/callbacks.js index f3f7f4fa..25e0a804 100644 --- a/www/js/callbacks.js +++ b/www/js/callbacks.js @@ -179,7 +179,7 @@ Callbacks = { CHANNEL.motd = motd; $("#motd").html(motd); $("#cs-motdtext").val(motd); - if (data.motd != "") { + if (motd != "") { $("#motdwrap").show(); $("#motd").show(); $("#togglemotd").find(".glyphicon-plus")