diff --git a/bridges/StoriesIGBridge.php b/bridges/StoriesIGBridge.php index ddf9846b145..7f2c396faf6 100644 --- a/bridges/StoriesIGBridge.php +++ b/bridges/StoriesIGBridge.php @@ -44,4 +44,13 @@ public function getURI(){ return parent::getURI(); } + + public function getName() { + + if (!is_null($this->getInput('username'))) { + return $this->getInput('username') . ' - ' . self::NAME; + } + + return parent::getName(); + } }