Skip to content

Commit

Permalink
Fix cache not storing items indefinitely
Browse files Browse the repository at this point in the history
  • Loading branch information
A5hleyRich committed Sep 24, 2020
1 parent ada18a9 commit f3bec50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Avatar.php
Expand Up @@ -185,7 +185,7 @@ public function toBase64()

$base64 = $this->image->encode('data-url');

$this->cache->put($key, $base64, 0);
$this->cache->put($key, $base64);

return $base64;
}
Expand Down

0 comments on commit f3bec50

Please sign in to comment.