1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-03 01:39:24 +02:00
This commit is contained in:
Daniel Neto 2024-03-21 19:42:56 -03:00
parent dea21a0faa
commit a253967c75

View file

@ -648,7 +648,7 @@ class LiveTransmitionHistory extends ObjectYPT
$sql = "SELECT * FROM " . static::getTableName() . " WHERE `key` LIKE '{$key}%' ";
$sql .= " ORDER BY id DESC LIMIT 1";
$sql .= " ORDER BY `key` = '{$key}', id DESC LIMIT 1";
//var_dump($sql);exit;
$res = sqlDAL::readSql($sql);
$data = sqlDAL::fetchAssoc($res);