Mercurial Hosting > chat
diff src/chat.js @ 92:c41e200c3e76
try to fix lost posts
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Mon, 31 Mar 2025 15:43:14 -0600 |
parents | 3053a4fc10be |
children | d0566cc4a2ac |
line wrap: on
line diff
--- a/src/chat.js Sun Mar 16 20:32:10 2025 -0600 +++ b/src/chat.js Mon Mar 31 15:43:14 2025 -0600 @@ -178,13 +178,14 @@ ajax(url); } -function added(html) { +function added(html,updated) { let input = document.querySelector('div[input]'); input.insertAdjacentHTML('beforebegin',html); fixPosts(); input.scrollIntoView({block: 'end'}); if( document.hasFocus() ) active(); + lastUpdate = updated; } function getChats(chatId,updated) { @@ -192,11 +193,11 @@ if( !first || first.getAttribute('chat') !== chatId ) { // console.log('getChats'); ajax('get_chats.js'); + if( updated ) + lastUpdate = updated; } else if( first && (currentChatId !== chatId || spy) ) { incUnread(first); } - if( updated ) - lastUpdate = updated; if( !document.hasFocus() ) { document.title = title + ' *'; }