]> BookStack Code Mirror - bookstack/blobdiff - app/Activity/Notifications/NotificationManager.php
fix Sidebar scrolling at mid-range sceen
[bookstack] / app / Activity / Notifications / NotificationManager.php
index fc6a5f57c60c75e661d3bf79641ded997da55849..294f56ebbcf4ab86772e33866df46c4b22d1430d 100644 (file)
@@ -24,7 +24,7 @@ class NotificationManager
         $handlersToRun = $this->handlers[$activityType] ?? [];
         foreach ($handlersToRun as $handlerClass) {
             /** @var NotificationHandler $handler */
-            $handler = app()->make($handlerClass);
+            $handler = new $handlerClass();
             $handler->handle($activity, $detail, $user);
         }
     }