Skip to content

Commit

Permalink
Fix for sending secure messages to insecure groups.
Browse files Browse the repository at this point in the history
Fixes signalapp#4225
// FREEBIE
  • Loading branch information
moxie0 committed Oct 9, 2015
1 parent e4cd2ca commit 450128e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/org/thoughtcrime/securesms/ConversationActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -775,7 +775,7 @@ private ListenableFuture<Boolean> initializeSecurity(final boolean currentSecure
{
final SettableFuture<Boolean> future = new SettableFuture<>();

handleSecurityChange(currentSecureText || isGroupConversation(),
handleSecurityChange(currentSecureText || isPushGroupConversation(),
currentSecureVoice && !isGroupConversation());

new AsyncTask<Recipients, Void, Pair<Boolean, Boolean>>() {
Expand Down

0 comments on commit 450128e

Please sign in to comment.