Skip to content

Commit

Permalink
Merge branch 'main' into 3.x
Browse files Browse the repository at this point in the history
  • Loading branch information
arukompas committed Sep 26, 2023
2 parents 636ca90 + 7e6908c commit b5922f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Readers/IndexedLogReader.php
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ public function scan(int $maxBytesToScan = null, bool $force = false): static
while (
(! isset($lastPositionToScan) || $currentLogPosition < $lastPositionToScan)
&& ($stopScanningAfter > microtime(true))
&& ($line = fgets($this->fileHandle, 1024)) !== false
&& ($line = fgets($this->fileHandle)) !== false
) {
$matches = [];
$ts = null;
Expand Down

0 comments on commit b5922f1

Please sign in to comment.