List status
This commit is contained in:
parent
c0a2e0e850
commit
7ee1772770
2 changed files with 21 additions and 19 deletions
|
@ -15,6 +15,19 @@
|
|||
"versionName": "1.7.9.4.1",
|
||||
"outputFile": "monocles chat-1.7.9.4.1-git-universal-release.apk"
|
||||
},
|
||||
{
|
||||
"type": "ONE_OF_MANY",
|
||||
"filters": [
|
||||
{
|
||||
"filterType": "ABI",
|
||||
"value": "arm64-v8a"
|
||||
}
|
||||
],
|
||||
"attributes": [],
|
||||
"versionCode": 16604,
|
||||
"versionName": "1.7.9.4.1",
|
||||
"outputFile": "monocles chat-1.7.9.4.1-git-arm64-v8a-release.apk"
|
||||
},
|
||||
{
|
||||
"type": "ONE_OF_MANY",
|
||||
"filters": [
|
||||
|
@ -28,19 +41,6 @@
|
|||
"versionName": "1.7.9.4.1",
|
||||
"outputFile": "monocles chat-1.7.9.4.1-git-x86-release.apk"
|
||||
},
|
||||
{
|
||||
"type": "ONE_OF_MANY",
|
||||
"filters": [
|
||||
{
|
||||
"filterType": "ABI",
|
||||
"value": "armeabi-v7a"
|
||||
}
|
||||
],
|
||||
"attributes": [],
|
||||
"versionCode": 16601,
|
||||
"versionName": "1.7.9.4.1",
|
||||
"outputFile": "monocles chat-1.7.9.4.1-git-armeabi-v7a-release.apk"
|
||||
},
|
||||
{
|
||||
"type": "ONE_OF_MANY",
|
||||
"filters": [
|
||||
|
@ -59,13 +59,13 @@
|
|||
"filters": [
|
||||
{
|
||||
"filterType": "ABI",
|
||||
"value": "arm64-v8a"
|
||||
"value": "armeabi-v7a"
|
||||
}
|
||||
],
|
||||
"attributes": [],
|
||||
"versionCode": 16604,
|
||||
"versionCode": 16601,
|
||||
"versionName": "1.7.9.4.1",
|
||||
"outputFile": "monocles chat-1.7.9.4.1-git-arm64-v8a-release.apk"
|
||||
"outputFile": "monocles chat-1.7.9.4.1-git-armeabi-v7a-release.apk"
|
||||
}
|
||||
],
|
||||
"elementType": "File"
|
||||
|
|
|
@ -1106,9 +1106,11 @@ public class StoriesActivity extends XmppActivity implements XmppConnectionServi
|
|||
if (account.isEnabled()) {
|
||||
for (Contact contact : account.getRoster().getContacts()) {
|
||||
List<String> statusMessages = contact.getPresences().getStatusMessages();
|
||||
if (contact.showInContactList() && !statusMessages.isEmpty()) {
|
||||
this.contacts.add(contact);
|
||||
statusMessages.addAll(contact.getPresences().getStatusMessages());
|
||||
for (String statusMessage : statusMessages) {
|
||||
if (contact.showInContactList() && !statusMessage.isEmpty()) {
|
||||
this.contacts.add(contact);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue