From 6e83516e194e8e6ff86704d3e3ac00cf306c009f Mon Sep 17 00:00:00 2001 From: liamcottle Date: Mon, 29 Apr 2024 04:05:17 +1200 Subject: [PATCH] use var for send destination --- index.html | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/index.html b/index.html index 9f283c8..7b70a29 100644 --- a/index.html +++ b/index.html @@ -141,6 +141,8 @@ isWebsocketConnected: false, + sendToDestinationHash: "bebfd1f0635a7f6129ee3b30c05328f3", + newMessageText: "", isSendingMessage: false, autoScrollOnNewMessage: true, @@ -236,7 +238,7 @@ // send message to reticulum via websocket this.ws.send(JSON.stringify({ "type": "lxmf.delivery", - "destination_hash": "42973ba338620b6319384fef3ae4f0d8", // FIXME + "destination_hash": this.sendToDestinationHash, "message": messageText, }));