From 3a3b88919651728fd1977006200d4bda144a9dfb Mon Sep 17 00:00:00 2001 From: Cory McWilliams Date: Sat, 6 Dec 2025 13:21:45 -0500 Subject: [PATCH] core: Inconsistent ready message in editonly mode. --- core/app.js | 6 +++++- docs/transfer_account.md | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/core/app.js b/core/app.js index b697a5d5..061a2f3d 100644 --- a/core/app.js +++ b/core/app.js @@ -168,7 +168,11 @@ exports.app_socket = async function socket(request, response) { if (blobId) { if (message.edit_only) { response.send( - JSON.stringify({action: 'ready', edit_only: true}), + JSON.stringify({ + action: 'ready', + version: version(), + edit_only: true, + }), 0x1 ); } else { diff --git a/docs/transfer_account.md b/docs/transfer_account.md index 3bd25519..99f09ee6 100644 --- a/docs/transfer_account.md +++ b/docs/transfer_account.md @@ -7,7 +7,7 @@ author a message on one device without having received all messages authored from another, your account may become irrecoverably forked. Other clients may stop receiving your messages if this happens. -1. In Tilde Friends, the _identity_ app will let you export and import your identity as a series of twelve English words for copying and pasting. Keep these words secret! +1. In Tilde Friends, the _identity_ app will let you export and import your identity as a series of twelve English words for copying and pasting. Keep these words secret! 2. The _sneaker_ app will let you export and import your feed to a file, but it's likely easier and faster to use your initial account on the receiver as a throwaway account to connect, follow yourself, and do the initial replication.