[StoriesIGBridge] Use getName() to create custom feed titles (#1332)
* [StoriesIGBridge] Use getName()
This commit is contained in:
parent
fc5a1526ca
commit
f0260c62c3
1 changed files with 9 additions and 0 deletions
|
@ -44,4 +44,13 @@ class StoriesIGBridge extends BridgeAbstract {
|
|||
|
||||
return parent::getURI();
|
||||
}
|
||||
|
||||
public function getName() {
|
||||
|
||||
if (!is_null($this->getInput('username'))) {
|
||||
return $this->getInput('username') . ' - ' . self::NAME;
|
||||
}
|
||||
|
||||
return parent::getName();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue