mirror of
https://github.com/liamcottle/reticulum-meshchat.git
synced 2026-04-28 00:20:48 +00:00
created_at might not exist yet so use timestamp instead
This commit is contained in:
parent
a1339c055a
commit
7201e08116
1 changed files with 1 additions and 1 deletions
|
|
@ -1177,7 +1177,7 @@ export default {
|
|||
},
|
||||
showSentMessageInfo: function(lxmfMessage) {
|
||||
DialogUtils.alert([
|
||||
`Created: ${Utils.convertDateTimeToLocalDateTimeString(new Date(lxmfMessage.created_at))}`,
|
||||
`Created: ${Utils.convertUnixMillisToLocalDateTimeString(lxmfMessage.timestamp * 1000)}`,
|
||||
`Method: ${lxmfMessage.method ?? "unknown"}`,
|
||||
].join("\n"));
|
||||
},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue