mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-05 17:19:37 +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);
|
$reduxState = $this->getJSONData($html);
|
||||||
$videos = [];
|
$videos = [];
|
||||||
if ($this->getInput('c')) {
|
if ($this->getInput('c')) {
|
||||||
$videos = $reduxState->userChannel->videos->results;
|
$videosMethod = 'videos(' . $this->getInput('c') . ')';
|
||||||
$this->title = $reduxState->userChannel->info->name;
|
$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')) {
|
} elseif ($this->getInput('p')) {
|
||||||
$playListVideosMethod = 'getPlaylistVideos(' . $this->getInput('p') . ')';
|
$playListVideosMethod = 'getPlaylistVideos(' . $this->getInput('p') . ')';
|
||||||
$videos = $reduxState->api->queries->$playListVideosMethod->data->results;
|
$videos = $reduxState->api->queries->$playListVideosMethod->data->results;
|
||||||
|
Loading…
Reference in New Issue
Block a user