You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(encoding): replace Unicode em dashes and ellipsis with ASCII equivalents
In JS comments and string literals, replace:
- U+2014 em dash with ASCII '--'
- U+2026 ellipsis with HTML entity …
Prevents double-encoding issues consistent with project conventions (PR #38).
? `<button class="msg-reply-quote" data-reply-target="${esc(m.reply_to_msg_id)}" title="Jump to message ${esc(m.reply_to_msg_id)}">↩ In reply to: <em>${esc(m.reply_to_msg_id.slice(0,8))}…</em></button>`
1211
+
? `<button class="msg-reply-quote" data-reply-target="${esc(m.reply_to_msg_id)}" title="Jump to message ${esc(m.reply_to_msg_id)}">↩ In reply to: <em>${esc(m.reply_to_msg_id.slice(0,8))}…</em></button>`
0 commit comments