From 75b59322ada8ca9d90463d06ad0908a097091b52 Mon Sep 17 00:00:00 2001 From: the-djmaze <> Date: Fri, 23 Dec 2022 19:05:54 +0100 Subject: [PATCH] Resolve #792 --- snappymail/v/0.0.0/app/libraries/MailSo/Cache/Drivers/Redis.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snappymail/v/0.0.0/app/libraries/MailSo/Cache/Drivers/Redis.php b/snappymail/v/0.0.0/app/libraries/MailSo/Cache/Drivers/Redis.php index 60516c757..9271f0cb0 100644 --- a/snappymail/v/0.0.0/app/libraries/MailSo/Cache/Drivers/Redis.php +++ b/snappymail/v/0.0.0/app/libraries/MailSo/Cache/Drivers/Redis.php @@ -54,7 +54,7 @@ class Redis implements \MailSo\Cache\DriverInterface $this->sKeyPrefix = empty($sKeyPrefix) ? $sKeyPrefix - : \preg_replace('/[^a-zA-Z0-9_]/', '_', rtrim(trim($this->sKeyPrefix), '\\/')) . '/'; + : \preg_replace('/[^a-zA-Z0-9_]/', '_', rtrim(trim($sKeyPrefix), '\\/')) . '/'; } public function Set(string $sKey, string $sValue) : bool