From f68289cbcc933ae567bf2f992c856128b11adcfb Mon Sep 17 00:00:00 2001 From: "Tristan B. Kildaire" Date: Fri, 4 Dec 2020 18:13:36 +0200 Subject: [PATCH] Re-enabled notifications variable --- source/app.d | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/app.d b/source/app.d index 88fb3cb..048e2b5 100644 --- a/source/app.d +++ b/source/app.d @@ -13,7 +13,7 @@ JSONValue config; /* Current conneciton */ DClient dclient; -//NotificationWatcher dnotifications; +NotificationWatcher dnotifications; Mode currentMode; @@ -128,7 +128,7 @@ void commandLine() addr = getAddress(address, to!(ushort)(port))[0]; writeln("Connecting to "~to!(string)(addr)~"..."); dclient = new DClient(addr); - dnotifications= new NotificationWatcher(dclient); + dnotifications = new NotificationWatcher(dclient); writeln("Connected!"); /* Get the message of the day */