Browse code

Fix wrong attribute name in send file notation job

Benjamin Roth authored on09/05/2025 09:17:37
Showing1 changed files
... ...
@@ -53,7 +53,7 @@ class SecureDownloadsJob
53 53
     public function sendFileNotifications(string $scope)
54 54
     {
55 55
         // Get archives with notifications enabled
56
-        $Configurations = MemberfilesConfigModel::findBy(["hasNotifications = ?", "enabled = ?"], ['1','1']);
56
+        $Configurations = MemberfilesConfigModel::findBy(["hasNotification = ?", "enabled = ?"], ['1','1']);
57 57
 
58 58
         if ($Configurations !== null)
59 59
         {