From 855751ffbb079a1d88124432d5a8d49e23587d42 Mon Sep 17 00:00:00 2001 From: liamcottle Date: Tue, 30 Apr 2024 00:59:39 +1200 Subject: [PATCH] fix outbound chats not showing --- index.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/index.html b/index.html index d370a1f..27e70ce 100644 --- a/index.html +++ b/index.html @@ -379,7 +379,8 @@ // add sent message to ui this.chatItems.push({ "is_outbound": true, - "source_hash": "todo", // FIXME + "source_hash": this.config.lxmf_address_hash, // from us + "destination_hash": this.selectedPeer.destination_hash, // to them "message": { "content": messageText, },