Fixed crashes containing PHP internal stack frames being flagged as plugin-caused

This commit is contained in:
Dylan K. Taylor 2024-12-24 14:20:16 +00:00
parent 506cfe0362
commit 81e3730b99
No known key found for this signature in database
GPG Key ID: 8927471A91CAFD3D

View File

@ -490,7 +490,7 @@ final class Utils{
$rawFrame = $rawTrace[$frameId];
$safeTrace[$frameId] = new ThreadCrashInfoFrame(
$printableFrame,
$rawFrame["file"] ?? "unknown",
$rawFrame["file"] ?? null,
$rawFrame["line"] ?? 0
);
}