Skip to content

Commit

Permalink
修复 RequestContext::exists() (#671)
Browse files Browse the repository at this point in the history
  • Loading branch information
Yurunsoft authored Jan 10, 2024
1 parent 9fb44f3 commit e0ede0b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ public function exists(string $flag): bool
{
if ($flag > -1)
{
return Coroutine::exists($flag);
return Coroutine::exists((int) $flag);
}
else
{
Expand Down

0 comments on commit e0ede0b

Please sign in to comment.