From 654c11f8d9b6b2377f62a2fba1133f62a07aa50b Mon Sep 17 00:00:00 2001 From: Pavel Shevaev Date: Tue, 25 Feb 2025 18:10:17 +0300 Subject: [PATCH] Filtering all error lines --- error.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/error.inc.php b/error.inc.php index 1ca0814..e1b6119 100644 --- a/error.inc.php +++ b/error.inc.php @@ -23,7 +23,7 @@ function _gamectl_exception_handler($e) foreach($lines as $idx => $line) { if($idx > 0 && preg_match('~^#\d+\s+~', $line)) - break; + continue; $digest .= $line . "\n"; } $digest = trim($digest);