Skip to content

Commit

Permalink
don't show connectivity activity on title click when forwarding/sharing
Browse files Browse the repository at this point in the history
  • Loading branch information
adbenitez authored and r10s committed Sep 24, 2023
1 parent 1e69fa8 commit 74c6899
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/org/thoughtcrime/securesms/ConversationListActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,11 @@ public void onSearchClosed() {
}

private void initializeTitleListener() {
title.setOnClickListener(v -> startActivity(new Intent(this, ConnectivityActivity.class)));
title.setOnClickListener(v -> {
if (!isRelayingMessageContent(this)) {
startActivity(new Intent(this, ConnectivityActivity.class));
}
});
}

@Override
Expand Down

0 comments on commit 74c6899

Please sign in to comment.