mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-05 00:59:35 +00:00
[RutubeBridge] Fix video fetching by channel id
This commit is contained in:
parent
73681e54c9
commit
a1b6a1571d
@ -85,8 +85,10 @@ class RutubeBridge extends BridgeAbstract
|
||||
$reduxState = $this->getJSONData($html);
|
||||
$videos = [];
|
||||
if ($this->getInput('c')) {
|
||||
$videos = $reduxState->userChannel->videos->results;
|
||||
$this->title = $reduxState->userChannel->info->name;
|
||||
$videosMethod = 'videos(' . $this->getInput('c') . ')';
|
||||
$channelInfoMethod = 'channelInfo({"userChannelId":' . $this->getInput('c') . '})';
|
||||
$videos = $reduxState->api->queries->$videosMethod->data->results;
|
||||
$this->title = $reduxState->api->queries->$channelInfoMethod->data->name;
|
||||
} elseif ($this->getInput('p')) {
|
||||
$playListVideosMethod = 'getPlaylistVideos(' . $this->getInput('p') . ')';
|
||||
$videos = $reduxState->api->queries->$playListVideosMethod->data->results;
|
||||
|
Loading…
Reference in New Issue
Block a user