From 1a4021a5bdc5f8be8521eae828bfd09dfc3dd6af Mon Sep 17 00:00:00 2001 From: Carl Schwan Date: Tue, 12 Jul 2022 14:07:49 +0200 Subject: [PATCH] Fix init AP class Signed-off-by: Carl Schwan --- lib/AP.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/lib/AP.php b/lib/AP.php index 23f89a30..c780b39b 100644 --- a/lib/AP.php +++ b/lib/AP.php @@ -119,7 +119,6 @@ class AP { public SocialAppNotificationInterface $notificationInterface; public ConfigService $configService; public static ?AP $activityPub = null; - private SocialAppNotificationInterface $socialAppNotificationInterface; public function __construct( AcceptInterface $acceptInterface, @@ -133,7 +132,7 @@ class AP { ImageInterface $imageInterface, LikeInterface $likeInterface, NoteInterface $noteInterface, - SocialAppNotificationInterface $socialAppNotificationInterface, + SocialAppNotificationInterface $notificationInterface, PersonInterface $personInterface, ServiceInterface $serviceInterface, GroupInterface $groupInterface, @@ -156,7 +155,7 @@ class AP { $this->imageInterface = $imageInterface; $this->likeInterface = $likeInterface; $this->noteInterface = $noteInterface; - $this->socialAppNotificationInterface = $socialAppNotificationInterface; + $this->notificationInterface = $notificationInterface; $this->personInterface = $personInterface; $this->serviceInterface = $serviceInterface; $this->groupInterface = $groupInterface;