From 55487a90c369ef7ea6d1d74b0c07715154789c6c Mon Sep 17 00:00:00 2001 From: OfficialDakari Date: Thu, 16 Oct 2025 20:37:48 +0500 Subject: [PATCH] follow up notification reply --- lib/utils/notification_background_handler.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/utils/notification_background_handler.dart b/lib/utils/notification_background_handler.dart index 415c759..bf46915 100644 --- a/lib/utils/notification_background_handler.dart +++ b/lib/utils/notification_background_handler.dart @@ -150,7 +150,7 @@ Future notificationTap( 'Selected notification with reply action but without input', ); } - final eventId = await room.sendTextEvent(input); + final eventId = await room.sendTextEvent(input, parseCommands: false); if (PlatformInfos.isAndroid) { final ownProfile = await room.client.fetchOwnProfile();