@@ -365,8 +365,8 @@ |
||
| 365 | 365 | $redis = $this->getRedis(); |
| 366 | 366 | |
| 367 | 367 | if ($redis->exists($key)) { |
| 368 | - $data = unserialize($redis->get($key)); |
|
| 369 | - $data .= $value; |
|
| 368 | + $data = unserialize($redis->get($key)); |
|
| 369 | + $data .= $value; |
|
| 370 | 370 | |
| 371 | 371 | return $redis->setex($key, $expiration, serialize($data)); |
| 372 | 372 | } |