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 out of bounds crash

Stephen Paul Weber (Sep 26, 2022, 12:24 PM -0500) 42515bc4 2ebf6f67

+3
+3
src/main/java/eu/siacs/conversations/ui/ConversationsOverviewFragment.java
··· 364 364 365 365 @Override 366 366 public boolean onContextItemSelected(MenuItem item) { 367 + int pos = ((AdapterContextMenuInfo) item.getMenuInfo()).position; 368 + if (conversations == null || conversations.size() < pos || pos < 0) return false; 369 + 367 370 Conversation conversation = conversations.get(((AdapterContextMenuInfo) item.getMenuInfo()).position); 368 371 ConversationFragment fragment = new ConversationFragment(); 369 372 fragment.setHasOptionsMenu(false);