Skip to content

Commit

Permalink
Feature/windows event (gabrielrcouto#166)
Browse files Browse the repository at this point in the history
* Fix to custom JSON decoder
  • Loading branch information
kingga authored and reisraff committed Feb 26, 2019
1 parent d980287 commit 7849019
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Ipc/Receiver.php
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ protected function jsonSplit($json, &$carry = [])
$fchar = '[';
$lchar = ']';
$start = $fbrac;
} elseif ($fcurl > $fbrac || $fbrac === false) {
} elseif ($fcurl < $fbrac || $fbrac === false) {
// If '{' is before '[' use {}.
$fchar = '{';
$lchar = '}';
Expand Down

0 comments on commit 7849019

Please sign in to comment.