Skip to content

Commit

Permalink
Fixed crashes containing PHP internal stack frames being flagged as p…
Browse files Browse the repository at this point in the history
…lugin-caused
  • Loading branch information
dktapps committed Dec 24, 2024
1 parent 506cfe0 commit 81e3730
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/Utils.php
Original file line number Diff line number Diff line change
Expand Up @@ -490,7 +490,7 @@ public static function printableTraceWithMetadata(array $rawTrace, int $maxStrin
$rawFrame = $rawTrace[$frameId];
$safeTrace[$frameId] = new ThreadCrashInfoFrame(
$printableFrame,
$rawFrame["file"] ?? "unknown",
$rawFrame["file"] ?? null,
$rawFrame["line"] ?? 0
);
}
Expand Down

0 comments on commit 81e3730

Please sign in to comment.