1
0
Fork 1

Maybe fix random crash when layout changed

This commit is contained in:
Arne 2023-12-01 22:14:21 +01:00
parent 643750f03f
commit 04ff8300dc
2 changed files with 17 additions and 17 deletions

View file

@ -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"

View file

@ -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;
});