diff --git a/bridges/SoundcloudBridge.php b/bridges/SoundcloudBridge.php index 9607d33d..99a21174 100644 --- a/bridges/SoundcloudBridge.php +++ b/bridges/SoundcloudBridge.php @@ -59,9 +59,13 @@ class SoundCloudBridge extends BridgeAbstract { return parent::getIcon(); } + public function getURI(){ + return 'https://soundcloud.com/' . $this->getInput('u'); + } + public function getName(){ if(!is_null($this->getInput('u'))) { - return self::NAME . ' - ' . $this->getInput('u'); + return $this->getInput('u') . ' - ' . self::NAME; } return parent::getName();