diff src/add_post.js.luan @ 30:f4708943f29e

add heartbeat
author Franklin Schmidt <fschmidt@gmail.com>
date Sat, 09 Nov 2024 19:17:21 -0700
parents 82b55186a4a0
children 7ea33179592a
line wrap: on
line diff
--- a/src/add_post.js.luan	Wed Nov 06 23:05:45 2024 -0700
+++ b/src/add_post.js.luan	Sat Nov 09 19:17:21 2024 -0700
@@ -25,9 +25,9 @@
 	local chat = Http.request.parameters.chat or error()
 	local content = Http.request.parameters.content or error()
 	local post
+	local now = time_now()
 	run_in_transaction( function()
 		chat = get_chat_by_id(chat) or error()
-		local now = time_now()
 		post = new_post{
 			chat_id = chat.id
 			author_id = user.id
@@ -41,6 +41,6 @@
 	local html = `post_html(post)`
 	local js = "added("..json_string(html)..")"
 	chat.http_push(js)
-	js = "getChats('"..chat.id.."')"
+	js = "getChats('"..chat.id.."',"..now..")"
 	http_push_to_users( chat.user_ids, js )
 end