Fix: incorrectly shown latest position
This commit is contained in:
parent
2de95adb2a
commit
0ef57926dd
@ -158,7 +158,7 @@
|
|||||||
LEFT JOIN `" . self::$db->table('users') . "` u ON (p.user_id = u.id)
|
LEFT JOIN `" . self::$db->table('users') . "` u ON (p.user_id = u.id)
|
||||||
LEFT JOIN `" . self::$db->table('tracks') . "` t ON (p.track_id = t.id)
|
LEFT JOIN `" . self::$db->table('tracks') . "` t ON (p.track_id = t.id)
|
||||||
$where
|
$where
|
||||||
ORDER BY p.time, p.id DESC LIMIT 1";
|
ORDER BY p.time DESC, p.id DESC LIMIT 1";
|
||||||
$this->loadWithQuery($query, $params);
|
$this->loadWithQuery($query, $params);
|
||||||
return $this;
|
return $this;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user