From c740947551e79c671cb75f1115bff4b764ca7550 Mon Sep 17 00:00:00 2001 From: Kelrap <99418823+Kelrap@users.noreply.github.com> Date: Tue, 29 Jul 2025 15:55:25 -0400 Subject: [PATCH] Shows bot settings on bot DM details page (#3582) * Shows bot settings on bot DM details page * chore: show bot settings in DMs with bot settings state event --------- Co-authored-by: ggurdin --- lib/pangea/chat_settings/pages/pangea_chat_details.dart | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/pangea/chat_settings/pages/pangea_chat_details.dart b/lib/pangea/chat_settings/pages/pangea_chat_details.dart index 02a10e284..861ca3933 100644 --- a/lib/pangea/chat_settings/pages/pangea_chat_details.dart +++ b/lib/pangea/chat_settings/pages/pangea_chat_details.dart @@ -415,7 +415,9 @@ class RoomDetailsButtonRowState extends State { onSubmit: widget.controller.setBotOptions, ), ), - visible: !room.isSpace && !room.isDirectChat && room.canInvite, + visible: !room.isSpace && + (!room.isDirectChat || room.botOptions != null) && + room.canInvite, ), ButtonDetails( title: l10n.chatCapacity,