1
0
mirror of https://github.com/RSS-Bridge/rss-bridge.git synced 2025-01-16 21:58:21 +01:00

fix: make filecache be case-sensitive on key (#3113)

This commit is contained in:
Dag 2022-10-29 10:27:26 +02:00 committed by GitHub
parent e027bd9274
commit 1b45a53402
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -80,9 +80,6 @@ class FileCache implements CacheInterface
public function setKey($key)
{
if (!empty($key) && is_array($key)) {
$key = array_map('strtolower', $key);
}
$key = json_encode($key);
if (!is_string($key)) {