Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix(files_reminders): Don't load if disabled for user
Signed-off-by: Josh <[email protected]>
  • Loading branch information
joshtrichards authored and backportbot[bot] committed Jul 7, 2025
commit d8c84530090f7f2ef43ff656f057f629d0687052
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,9 @@ public function handle(Event $event): void {
return;
}

if (!$this->appManager->isEnabledForUser('notifications')) {
if (!$this->appManager->isEnabledForUser(Application::APP_ID)
|| !$this->appManager->isEnabledForUser('notifications')
) {
return;
}

Expand Down
Loading