From 04ff8300dc201775c4ac02f0c2a773815a274208 Mon Sep 17 00:00:00 2001 From: Arne Date: Fri, 1 Dec 2023 22:14:21 +0100 Subject: [PATCH] Maybe fix random crash when layout changed --- git/release/output-metadata.json | 32 +++++++++---------- .../ui/ConversationFragment.java | 2 +- 2 files changed, 17 insertions(+), 17 deletions(-) diff --git a/git/release/output-metadata.json b/git/release/output-metadata.json index dbf0fef7d..d9252968b 100644 --- a/git/release/output-metadata.json +++ b/git/release/output-metadata.json @@ -15,19 +15,6 @@ "versionName": "1.7.8", "outputFile": "monocles chat-1.7.8-git-universal-release.apk" }, - { - "type": "ONE_OF_MANY", - "filters": [ - { - "filterType": "ABI", - "value": "x86" - } - ], - "attributes": [], - "versionCode": 15002, - "versionName": "1.7.8", - "outputFile": "monocles chat-1.7.8-git-x86-release.apk" - }, { "type": "ONE_OF_MANY", "filters": [ @@ -41,6 +28,19 @@ "versionName": "1.7.8", "outputFile": "monocles chat-1.7.8-git-armeabi-v7a-release.apk" }, + { + "type": "ONE_OF_MANY", + "filters": [ + { + "filterType": "ABI", + "value": "x86_64" + } + ], + "attributes": [], + "versionCode": 15003, + "versionName": "1.7.8", + "outputFile": "monocles chat-1.7.8-git-x86_64-release.apk" + }, { "type": "ONE_OF_MANY", "filters": [ @@ -59,13 +59,13 @@ "filters": [ { "filterType": "ABI", - "value": "x86_64" + "value": "x86" } ], "attributes": [], - "versionCode": 15003, + "versionCode": 15002, "versionName": "1.7.8", - "outputFile": "monocles chat-1.7.8-git-x86_64-release.apk" + "outputFile": "monocles chat-1.7.8-git-x86-release.apk" } ], "elementType": "File" diff --git a/src/main/java/eu/siacs/conversations/ui/ConversationFragment.java b/src/main/java/eu/siacs/conversations/ui/ConversationFragment.java index 154ed13fe..662f338df 100644 --- a/src/main/java/eu/siacs/conversations/ui/ConversationFragment.java +++ b/src/main/java/eu/siacs/conversations/ui/ConversationFragment.java @@ -1541,7 +1541,6 @@ public class ConversationFragment extends XmppFragment this.binding = DataBindingUtil.inflate(inflater, R.layout.fragment_conversation, container, false); binding.getRoot().setOnClickListener(null); //TODO why the fuck did we do this? - hasWriteAccessInMUC(); //Setting hide thread icon showThreadFeature(); @@ -1608,6 +1607,7 @@ public class ConversationFragment extends XmppFragment conversation.setUserSelectedThread(true); if (wasLocked) refresh(); newThreadTutorialToast("Cleared thread"); + hasWriteAccessInMUC(); return true; });