Skip to content

Commit

Permalink
DDEV-1965 fix after hashing key
Browse files Browse the repository at this point in the history
  • Loading branch information
Vadim Davydenko committed Nov 19, 2024
1 parent ec13382 commit d9aafdd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Storage/OctaneCache.php
Original file line number Diff line number Diff line change
Expand Up @@ -520,10 +520,10 @@ private function valueKey(array $data): string
*/
private function implodeKeysString(string $keys, string $key): string
{
return implode('::', [
return $keys ? implode('::', [
$keys,
$key,
]);
]) : $key;
}

/**
Expand Down

0 comments on commit d9aafdd

Please sign in to comment.