1
0
mirror of https://github.com/RSS-Bridge/rss-bridge.git synced 2025-08-02 06:40:23 +02:00

Merge pull request #430 from sysadminstory/master

Fix Cache write verification
This commit is contained in:
LogMANOriginal
2016-11-09 18:26:54 +01:00
committed by GitHub

View File

@@ -14,7 +14,7 @@ class FileCache implements CacheInterface {
public function saveData($datas){ public function saveData($datas){
$writeStream = file_put_contents($this->getCacheFile(), json_encode($datas, JSON_PRETTY_PRINT)); $writeStream = file_put_contents($this->getCacheFile(), json_encode($datas, JSON_PRETTY_PRINT));
if(!$writeStream) { if($writeStream === FALSE) {
throw new \Exception("Cannot write the cache... Do you have the right permissions ?"); throw new \Exception("Cannot write the cache... Do you have the right permissions ?");
} }