diff --git a/bridges/AppleMusicBridge.php b/bridges/AppleMusicBridge.php index a6ad9967..75712fae 100644 --- a/bridges/AppleMusicBridge.php +++ b/bridges/AppleMusicBridge.php @@ -24,9 +24,8 @@ class AppleMusicBridge extends BridgeAbstract public function collectData() { - $json = $this->getJson(); - $items = $this->getFeedItems($json); - $artist = $this->getArtist($json); + $items = $this->getJson(); + $artist = $this->getArtist($items); $this->title = $artist->artistName; @@ -45,7 +44,7 @@ class AppleMusicBridge extends BridgeAbstract 'content' => '
' . 'getInput('artist') . '&entity=album&limit=' . $limit . '&sort=recent'; $html = getSimpleHTMLDOM($url); $json = json_decode($html); - - return $json; - } - - private function getFeedItems($json) - { $result = $json->results; if (!is_array($result) || count($result) == 0) {