From 2f857c7da86ffaf17e92f29c30840e4e0aa56abe Mon Sep 17 00:00:00 2001 From: Daniel Barber Date: Fri, 2 Aug 2019 15:33:14 -0400 Subject: [PATCH] We're instantiating two controllers now --- Persephone/AppDelegate.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Persephone/AppDelegate.swift b/Persephone/AppDelegate.swift index 691932a..66ba9ab 100644 --- a/Persephone/AppDelegate.swift +++ b/Persephone/AppDelegate.swift @@ -24,7 +24,7 @@ class AppDelegate: NSObject, func applicationDidFinishLaunching(_ aNotification: Notification) { connectToMPDServer() - instantiateUserNotificationsController() + instantiateControllers() mediaKeyTap = MediaKeyTap(delegate: self) mediaKeyTap?.start() @@ -45,7 +45,7 @@ class AppDelegate: NSObject, ) } - func instantiateUserNotificationsController() { + func instantiateControllers() { _ = App.mpdServerController _ = App.userNotificationsController }