From 7c9b39ae332e574058f514d07b752136ac64b25c Mon Sep 17 00:00:00 2001 From: Eugene Molotov Date: Fri, 12 Sep 2025 23:28:09 +0500 Subject: [PATCH] [RutubeBridge] Follow site updates to fix videos listing retrieval (#4703) --- bridges/RutubeBridge.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bridges/RutubeBridge.php b/bridges/RutubeBridge.php index 097b6eab..10fa58c5 100644 --- a/bridges/RutubeBridge.php +++ b/bridges/RutubeBridge.php @@ -85,7 +85,7 @@ class RutubeBridge extends BridgeAbstract $reduxState = $this->getJSONData($html); $videos = []; if ($this->getInput('c')) { - $videosMethod = 'videos(' . $this->getInput('c') . ')'; + $videosMethod = 'allVideos(' . $this->getInput('c') . ',)'; $channelInfoMethod = 'channelInfo({"userChannelId":' . $this->getInput('c') . '})'; $videos = $reduxState->api->queries->$videosMethod->data->results; $this->title = $reduxState->api->queries->$channelInfoMethod->data->name;