diff --git a/bridges/StoriesIGBridge.php b/bridges/StoriesIGBridge.php index ddf9846b..7f2c396f 100644 --- a/bridges/StoriesIGBridge.php +++ b/bridges/StoriesIGBridge.php @@ -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(); + } }