mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2024-11-25 19:06:23 +03:00
fix: include playlist when processing soundcloud items (#2997)
This commit is contained in:
parent
f40ed566be
commit
b8f73618c1
1 changed files with 1 additions and 1 deletions
|
@ -55,7 +55,7 @@ class SoundCloudBridge extends BridgeAbstract
|
|||
|
||||
foreach ($apiItems->collection as $index => $apiItem) {
|
||||
if (in_array($this->getInput('t'), $hasTrackObject) === true) {
|
||||
$apiItem = $apiItem->track;
|
||||
$apiItem = $apiItem->playlist ?? $apiItem->track;
|
||||
}
|
||||
|
||||
$item = [];
|
||||
|
|
Loading…
Reference in a new issue