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: Fix warning when crash reporter fails to get loaded
Signed-off-by: Joas Schilling <[email protected]>
  • Loading branch information
nickvergessen authored and backportbot[bot] committed May 20, 2025
commit e269df3bc8449512c3c164dde84f5c4ebeef7de5
1 change: 1 addition & 0 deletions lib/private/Support/CrashReport/Registry.php
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ private function loadLazyProviders(): void {
\OC::$server->get(LoggerInterface::class)->critical('Could not load lazy crash reporter: ' . $e->getMessage(), [
'exception' => $e,
]);
return;
}
/**
* Try to register the loaded reporter. Theoretically it could be of a wrong
Expand Down
Loading