From 9b680e03eb81f59f0c878de3604595db2cc9d4ed Mon Sep 17 00:00:00 2001 From: Guy Halse Date: Tue, 25 Aug 2026 07:49:04 +0200 Subject: [PATCH] Remove extraneous prefix --- src/Consent/Store/Redis.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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:*'; } }