1
0
mirror of https://github.com/RSS-Bridge/rss-bridge.git synced 2025-07-30 21:30:14 +02: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

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)) {