From b12b321a8456ba204aed5f7acec02c55a096300c Mon Sep 17 00:00:00 2001 From: Jonas Taedcke <1809673+jonastaedcke@users.noreply.github.com> Date: Tue, 24 Sep 2024 22:13:21 +0200 Subject: [PATCH] [AppleMusicBridge] fix some errors, remove getFeedItems --- bridges/AppleMusicBridge.php | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) 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) {