1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-05 10:49:36 +02:00
DanielnetoDotCom 2021-06-15 09:11:24 -03:00
parent 1e98d08cd3
commit 96e062d029

View file

@ -272,7 +272,7 @@ class API extends PluginAbstract {
public function get_api_video_file($parameters) { public function get_api_video_file($parameters) {
global $global; global $global;
$obj = $this->startResponseObject($parameters); $obj = $this->startResponseObject($parameters);
$obj->video_file = Video::getHigherVideosPathsFromID($videos_id); $obj->video_file = Video::getHigherVideoPathFromID($videos_id);
return new ApiObject("", false, $obj); return new ApiObject("", false, $obj);
} }