From d229207d1897f1aa7c964e9cd621a1437df7bd24 Mon Sep 17 00:00:00 2001 From: ggurdin <46800240+ggurdin@users.noreply.github.com> Date: Mon, 27 Jan 2025 17:05:02 -0500 Subject: [PATCH] fix: uncommented call to change room description (#1608) --- lib/pages/chat_details/chat_details.dart | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/pages/chat_details/chat_details.dart b/lib/pages/chat_details/chat_details.dart index 4f4dd5f25..ebfee13b3 100644 --- a/lib/pages/chat_details/chat_details.dart +++ b/lib/pages/chat_details/chat_details.dart @@ -95,6 +95,10 @@ class ChatDetailsController extends State { ); if (input == null) return; // #Pangea + await showFutureLoadingDialog( + context: context, + future: () => room.setDescription(input.single), + ); // final success = await showFutureLoadingDialog( // context: context, // future: () => room.setDescription(input.single),