bridges: Return parent::getName by default

This commit is contained in:
logmanoriginal 2017-02-14 22:20:55 +01:00
parent d93d491d8e
commit c4169f1579
29 changed files with 145 additions and 57 deletions

View file

@ -35,7 +35,11 @@ class IdenticaBridge extends BridgeAbstract {
}
public function getName(){
return $this->getInput('u') . ' - Identica Bridge';
if(!is_null($this->getInput('u'))){
return $this->getInput('u') . ' - Identica Bridge';
}
return parent::getName();
}
public function getURI(){