mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-07-31 13:50:23 +02:00
[FileCache] Change parameters to lower-case
This prevents creating multiple cache files for the same request.
This commit is contained in:
@@ -55,7 +55,7 @@ class FileCache implements CacheInterface {
|
||||
* @return self
|
||||
*/
|
||||
public function setParameters(array $param){
|
||||
$this->param = $param;
|
||||
$this->param = array_map('strtolower', $param);
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
Reference in New Issue
Block a user