From 34a5b3341665bff80077c5fc378ee8c925ec1167 Mon Sep 17 00:00:00 2001 From: retinoic Date: Tue, 30 Sep 2025 12:30:28 -0400 Subject: [PATCH] Update AppleMusicBridge html parsing switch from getSimpleHTMLDOM() to getContents() to handle certain characters like '<' that break otherwise valid artist feeds. --- bridges/AppleMusicBridge.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bridges/AppleMusicBridge.php b/bridges/AppleMusicBridge.php index 81558b6d..5513a18f 100644 --- a/bridges/AppleMusicBridge.php +++ b/bridges/AppleMusicBridge.php @@ -66,7 +66,7 @@ class AppleMusicBridge extends BridgeAbstract } $url = 'https://itunes.apple.com/lookup?id=' . $this->getInput('artist') . '&entity=album&limit=' . $limit . '&sort=recent'; - $html = getSimpleHTMLDOM($url); + $html = getContents($url); $json = json_decode($html); $result = $json->results;