From 1b02d4f49b3be7b8317fb585ec60104a9805560b Mon Sep 17 00:00:00 2001 From: rmscoelho <50850007+rmscoelho@users.noreply.github.com> Date: Thu, 22 Jun 2023 06:27:52 +0100 Subject: [PATCH] [CorreioDaFeiraBridge] cache timeout + getName fixes (#3453) * [CorreioDaFeiraBridge] cache timeout fix * [CorreioDaFeiraBridge] cache timeout fix * [CorreioDaFeiraBridge] getName() fix --- bridges/CorreioDaFeiraBridge.php | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/bridges/CorreioDaFeiraBridge.php b/bridges/CorreioDaFeiraBridge.php index addbe7d9..2cb42ede 100644 --- a/bridges/CorreioDaFeiraBridge.php +++ b/bridges/CorreioDaFeiraBridge.php @@ -6,6 +6,7 @@ class CorreioDaFeiraBridge extends BridgeAbstract const URI = 'https://www.correiodafeira.pt/'; const DESCRIPTION = 'Returns news from the Portuguese local newspaper Correio da Feira'; const MAINTAINER = 'rmscoelho'; + const CACHE_TIMEOUT = 86400; const PARAMETERS = [ [ 'feed' => [ @@ -36,11 +37,7 @@ class CorreioDaFeiraBridge extends BridgeAbstract public function getName() { - $feed = $this->getInput('feed'); - if ($this->getInput('feed') !== null && $this->getInput('feed') !== '') { - return self::NAME . ' | ' . ucfirst($feed); - } - return self::NAME; + return !is_null($this->getKey('feed')) ? self::NAME . ' | ' . $this->getKey('feed') : self::NAME; } public function getURI()