Skip to content

Commit

Permalink
Merge pull request #65 from Xaraknid/patch-3
Browse files Browse the repository at this point in the history
fix autobahn 1.1.7 + 1.1.8
  • Loading branch information
ghedipunk committed Jan 3, 2016
2 parents 3896d8d + 23c0064 commit 44e0b42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion websockets.php
Expand Up @@ -340,7 +340,7 @@ protected function frame($message, $user, $messageType='text', $messageContinues
if ($length < 126) {
$b2 = $length;
}
elseif ($length <= 65536) {
elseif ($length < 65536) {
$b2 = 126;
$hexLength = dechex($length);
//$this->stdout("Hex Length: $hexLength");
Expand Down

0 comments on commit 44e0b42

Please sign in to comment.