From c9e99a7d6f3491b3cc64648c857c38101693f8df Mon Sep 17 00:00:00 2001 From: Marcel Hibbe Date: Fri, 12 May 2023 13:56:54 +0200 Subject: [PATCH] fix multiple bugs caused by launchMode="singleInstance" and noHistory="true" following lines for ChatActivity were removed: android:launchMode="singleInstance" android:noHistory="true" this solves: - share files from local storage broken - broken transitions (caused by "singleInstance") - fix to open chat when navigating back from conversation info - fix weird mixed conversations when opening a conversation by notification while being in another conversation launchMode="singleInstance" was introduced when reimplementing breakout rooms for the conductor to activity migration. So for now this reverting might introduce problems for breakout rooms. Signed-off-by: Marcel Hibbe --- app/src/main/AndroidManifest.xml | 2 -- 1 file changed, 2 deletions(-) diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index cee5b009c..c9ce563ec 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -211,8 +211,6 @@