Skip to content

Commit

Permalink
Merge branch 'master' of github.com:instasent/sms-counter-php
Browse files Browse the repository at this point in the history
* 'master' of github.com:instasent/sms-counter-php:
  fix bug
  • Loading branch information
Luis Muñoz Hdez authored and Luis Muñoz Hdez committed Oct 6, 2016
2 parents 98bf50b + ca48421 commit 0308542
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SMSCounter.php
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ public function utf8ToUnicode($str)
$unicode[] = $thisValue;
}

if ($thisValue > 128) {
if ($thisValue >= 128) {
if (count($values) == 0) {
$lookingFor = ($thisValue < 224) ? 2 : 3;
}
Expand Down

0 comments on commit 0308542

Please sign in to comment.