dever 7 years ago
parent
commit
cacfcc886f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/Queue.php

+ 1 - 1
src/Queue.php

@@ -16,7 +16,7 @@ class Queue
 
 	public function push($value)
 	{
-		$value = json_encode($value);
+		$value = json_encode($value, JSON_UNESCAPED_UNICODE);
 		$this->method->push($value);
 	}