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 <ggurdin@gmail.com>
This commit is contained in:
Kelrap 2025-07-29 15:55:25 -04:00 committed by GitHub
parent 1843a2cd84
commit c740947551
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -415,7 +415,9 @@ class RoomDetailsButtonRowState extends State<RoomDetailsButtonRow> {
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,