diff --git a/src/Consent/Store/Redis.php b/src/Consent/Store/Redis.php index 1d454f1..a4e6674 100644 --- a/src/Consent/Store/Redis.php +++ b/src/Consent/Store/Redis.php @@ -455,7 +455,7 @@ private function getRedis(): Client */ private function getUserKey(string $userId): string { - return $this->prefix . 'consent:' . $userId; + return 'consent:' . $userId; } @@ -466,6 +466,6 @@ private function getUserKey(string $userId): string */ private function getKeyPattern(): string { - return $this->prefix . 'consent:*'; + return 'consent:*'; } }