1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-04 18:29:39 +02:00

Update IMAGE

This commit is contained in:
DanieL 2022-12-14 11:18:51 -03:00
parent 36f5ed93e3
commit a89a4764eb

View file

@ -176,7 +176,7 @@ class API extends PluginAbstract {
public function get_api_id($parameters) {
global $global;
$obj = $this->startResponseObject($parameters);
$obj->id = md5($global['salt'] . 'AVideo');
$obj->id = base_convert(16, 38, md5($global['salt'] . 'AVideo'));
return new ApiObject("", false, $obj);
}