1
0
mirror of https://github.com/RSS-Bridge/rss-bridge.git synced 2025-08-26 09:34:46 +02:00

bridges: Return parent::getURI by default

This commit is contained in:
logmanoriginal
2017-02-14 22:36:33 +01:00
parent c4169f1579
commit 512a4f292b
21 changed files with 100 additions and 38 deletions

View File

@@ -28,7 +28,11 @@ class BooruprojectBridge extends GelbooruBridge {
const PIDBYPAGE = 20;
public function getURI(){
return 'http://' . $this->getInput('i') . '.booru.org/';
if(!is_null($this->getInput('i'))){
return 'http://' . $this->getInput('i') . '.booru.org/';
}
return parent::getURI();
}
public function getName(){