1
0
mirror of https://github.com/RSS-Bridge/rss-bridge.git synced 2025-06-01 20:33:05 +02:00

[Bridge] Simplify cache loading

This commit is contained in:
logmanoriginal 2016-09-01 19:43:25 +02:00
parent 85a025a82b
commit cd9435b936

View File

@ -251,13 +251,10 @@ abstract class BridgeAbstract implements BridgeInterface {
if(!is_null($this->cache)){
$this->cache->prepare($inputs);
$time = $this->cache->getTime();
} else {
$time = false;
}
if($time !== false && (time() - $this->getCacheDuration() < $time)){
$this->items = $this->cache->loadData();
return;
if($time !== false && (time() - $this->getCacheDuration() < $time)){
$this->items = $this->cache->loadData();
return;
}
}
if(empty($this->parameters)){