Skip to content

Commit

Permalink
Merge pull request #2144 from MGatner/redis-fix
Browse files Browse the repository at this point in the history
Update Redis legacy function
  • Loading branch information
lonnieezell authored Aug 14, 2019
2 parents 1009cb8 + a5c5d39 commit b8a6f03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion system/Cache/Handlers/RedisHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ public function delete(string $key)
{
$key = $this->prefix . $key;

return ($this->redis->delete($key) === 1);
return ($this->redis->del($key) === 1);
}

//--------------------------------------------------------------------
Expand Down

0 comments on commit b8a6f03

Please sign in to comment.