mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-08-12 19:44:12 +02:00
bridges: Return parent::getURI by default
This commit is contained in:
@@ -20,7 +20,11 @@ class FourchanBridge extends BridgeAbstract {
|
||||
));
|
||||
|
||||
public function getURI(){
|
||||
return static::URI . $this->getInput('c') . '/thread/' . $this->getInput('t');
|
||||
if(!is_null($this->getInput('c')) && !is_null($this->getInput('t'))){
|
||||
return static::URI . $this->getInput('c') . '/thread/' . $this->getInput('t');
|
||||
}
|
||||
|
||||
return parent::getURI();
|
||||
}
|
||||
|
||||
public function collectData(){
|
||||
|
Reference in New Issue
Block a user