[StoriesIGBridge] Use getName() to create custom feed titles (#1332)

* [StoriesIGBridge] Use getName()
This commit is contained in:
Joseph 2019-10-16 19:41:47 +00:00 committed by Lyra
parent fc5a1526ca
commit f0260c62c3
1 changed files with 9 additions and 0 deletions

View File

@ -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();
}
}