Remove need for application cache directory after changes to icon cache

This commit is contained in:
Dale Davies
2024-04-16 16:02:53 +01:00
parent 465d9b9d6d
commit e86bd4f85b
3 changed files with 5 additions and 5 deletions

View File

@@ -108,7 +108,7 @@ class Cache {
if ($this->config->parse_bool($this->config->get('cachebypass'))) {
$this->storage = new Caching\Storages\DevNullStorage();
} else {
$this->storage = new Caching\Storages\FileStorage($this->config->get('cachedir').'/application');
$this->storage = new Caching\Storages\FileStorage($this->config->get('cachedir'));
}
}