mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-08-29 19:09:56 +02:00
bridges: Return parent::getName by default
This commit is contained in:
@@ -50,7 +50,11 @@ class CpasbienBridge extends BridgeAbstract {
|
||||
}
|
||||
|
||||
public function getName(){
|
||||
return $this->getInput('q') . ' : ' . self::NAME;
|
||||
if(!is_null($this->getInput('q'))){
|
||||
return $this->getInput('q') . ' : ' . self::NAME;
|
||||
}
|
||||
|
||||
return parent::getName();
|
||||
}
|
||||
|
||||
private function getCachedDate($url){
|
||||
|
Reference in New Issue
Block a user