mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-23 18:15:22 +00:00
Fix WebRTC capability check for unregistered users
Fixes #6358 Closes #6368 // FREEBIE
This commit is contained in:
parent
1683bb4636
commit
12b27cc56b
@ -974,7 +974,10 @@ public class ConversationActivity extends PassphraseRequiredActionBarActivity
|
||||
}
|
||||
|
||||
private void initializeBetaCalling() {
|
||||
if (!TextSecurePreferences.isWebrtcCallingEnabled(this) || isGroupConversation()) {
|
||||
if (!TextSecurePreferences.isPushRegistered(this) ||
|
||||
!TextSecurePreferences.isWebrtcCallingEnabled(this) ||
|
||||
isGroupConversation())
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user