From bd6a4c310d997b500d8f0cbd122e2709fd0f47ed Mon Sep 17 00:00:00 2001 From: ralf Date: Thu, 2 May 2024 10:20:47 +0200 Subject: [PATCH] fix error in filemanager notifications: notifications::set_popupdata(): Argument #1 ($_appname) must be of type string, null given --- api/src/Storage/Tracking.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/src/Storage/Tracking.php b/api/src/Storage/Tracking.php index 47d3bf435d..234800ef6c 100644 --- a/api/src/Storage/Tracking.php +++ b/api/src/Storage/Tracking.php @@ -843,7 +843,7 @@ abstract class Tracking $notification->set_reply_to($reply_to); $notification->set_subject($subject); $notification->set_links(array($link)); - $notification->set_popupdata($link['app']??null, $link, $link['id']??null); + $notification->set_popupdata($link['app']??$this->app, $link, $link['id']??null); if ($attachments && is_array($attachments)) { $notification->set_attachments($attachments);