From cab8935636f9be887e785c0f57f2743698135404 Mon Sep 17 00:00:00 2001 From: LA Date: Thu, 5 Sep 2024 13:00:42 +0930 Subject: [PATCH] v1.5.11 Fixed typos --- app.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app.js b/app.js index 3078707..c62af16 100644 --- a/app.js +++ b/app.js @@ -1106,7 +1106,7 @@ document.addEventListener("DOMContentLoaded", () => { if (relayResult.success) { relaySuccess = true; const eventLink = `https://njump.me/${replyEventId}`; - showReplyNote(`Reply sent successfully via relay hop! View Event`, 'success', replyStatusNote); + showReplyNote(`Anon reply sent successfully via relay hop! View Event`, 'success', replyStatusNote); timelineItem.querySelector('.reply-textarea').value = ''; // Store the content hash with the current timestamp to prevent duplicate submissions @@ -1137,7 +1137,7 @@ document.addEventListener("DOMContentLoaded", () => { showReplyNote('No relays available. Please try again later.', 'error', replyStatusNote); } else { const eventLink = `https://njump.me/${replyEventId}`; - showReplyNote(`Reply sent successfully via ${successfulRelays}/${selectedRelays.length} relays! View Event`, 'success', replyStatusNote); + showReplyNote(`Anon reply sent successfully via ${successfulRelays}/${selectedRelays.length} relays! View Event`, 'success', replyStatusNote); timelineItem.querySelector('.reply-textarea').value = ''; // Store the content hash with the current timestamp to prevent duplicate submissions @@ -1151,7 +1151,7 @@ document.addEventListener("DOMContentLoaded", () => { } } catch (error) { console.error('Failed to send reply:', error); - showReplyNote('Failed to send reply. Please try again.', 'error', replyStatusNote); + showReplyNote('Failed to send anon reply. Please try again.', 'error', replyStatusNote); } finally { resetReplyFormState(spinner, sendReplyButton); }