Feature Pack with bug fixes for V2

This commit is contained in:
Ujwal223
2026-06-13 13:06:25 +05:45
parent 39b6545e4a
commit b7c8120496
41 changed files with 453 additions and 414 deletions
+4 -1
View File
@@ -213,9 +213,12 @@ const String kGhostModeJS = r"""
// MQTT topic starts at byte 4 (2 byte remaining-len + 2 byte topic-len)
try {
const decoded = new TextDecoder('utf-8', { fatal: false }).decode(bytes);
// Block typing / activity indicator publishes
// Block typing / activity indicator / seen-receipt publishes
if (
decoded.includes('/t_fs') || // foreground state (typing)
decoded.includes('/t_mt') || // mark thread seen
decoded.includes('/t_s') || // seen receipt
decoded.includes('/t_se') || // seen receipt (alt)
decoded.includes('activity_indicator') ||
decoded.includes('is_typing') ||
decoded.includes('direct_typing') ||