Skip to content

Commit 37f96df

Browse files
committed
update
1 parent 0462cd5 commit 37f96df

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

index.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,9 @@ public static function getRequestList()
3030
$html[] = '<ul class="nav nav-pills nav-stacked">';
3131
$last = count($_SESSION[Debugger::$sessionKey]) - 1;
3232
foreach ($_SESSION[Debugger::$sessionKey] as $i => $request) {
33+
if (!isset($request['status'])) {
34+
continue;
35+
}
3336
$active = ($i == $last ? 'active' : '');
3437
$html[] = '<li class="' . $active . '"><a href="#debug-request-' . $i . '" data-toggle="tab">';
3538
$html[] = static::getRequestCaption($request);

0 commit comments

Comments
 (0)