Work fork of an Android Jabber client for bridge users git.sr.ht/~singpolyma/cheogram-android
sopranica sgx xmpp jabber
0

Configure Feed

Select the types of activity you want to include in your feed.

Fix anyFeature

Stephen Paul Weber (Aug 19, 2025, 3:07 PM -0500) d3ffb253 5795afa4

+2 -2
+2 -2
src/main/java/eu/siacs/conversations/entities/Presences.java
··· 187 187 } 188 188 for (final var jid : jids) { 189 189 final var disco = connection.getManager(DiscoManager.class).get(jid); 190 - if (disco != null && disco.getFeatures().contains(namespace)) { 190 + if (disco != null && disco.hasFeature(namespace)) { 191 191 return true; 192 192 } 193 193 } ··· 201 201 } 202 202 for (final var jid : getFullJids()) { 203 203 final var disco = connection.getManager(DiscoManager.class).get(jid); 204 - if (disco != null && disco.getFeatures().contains(namespace)) { 204 + if (disco != null && disco.hasFeature(namespace)) { 205 205 return jid.getResource(); 206 206 } 207 207 }