Fix the weirdness of messages appearing in the middle of the screen

and working their way downwards one comment at a time as the ping runs
when joining an active chat room.
This commit is contained in:
Thomas Willingham 2014-02-26 01:57:29 +00:00
parent 2c72e49d1f
commit 04e6cb515b

View File

@ -113,7 +113,7 @@ function chatsvc_content(&$a) {
$chats = array();
$r = q("select * from chat left join xchan on chat_xchan = xchan_hash where chat_room = %d and chat_id > %d",
$r = q("select * from chat left join xchan on chat_xchan = xchan_hash where chat_room = %d and chat_id > %d order by created",
intval($a->data['chat']['room_id']),
intval($lastseen)
);
@ -147,4 +147,4 @@ function chatsvc_content(&$a) {
json_return_and_die($ret);
}