mirror of
https://github.com/nextcloud/talk-android.git
synced 2024-11-22 13:05:31 +03:00
Fix wrong conditions
Signed-off-by: Mario Danic <mario@lovelyhq.com>
This commit is contained in:
parent
7da475f8cc
commit
42d9b07c4e
1 changed files with 6 additions and 4 deletions
|
@ -231,10 +231,12 @@ public class CallActivity extends AppCompatActivity {
|
|||
networkBroadcastReceier = new BroadcastReceiver() {
|
||||
@Override
|
||||
public void onReceive(Context context, Intent intent) {
|
||||
if (!Device.getNetworkType(context).equals(JobRequest.NetworkType.ANY) && !leavingCall) {
|
||||
startPullingSignalingMessages(true);
|
||||
} else if (Device.getNetworkType(context).equals(JobRequest.NetworkType.ANY) && leavingCall) {
|
||||
hangup(true);
|
||||
if (!Device.getNetworkType(context).equals(JobRequest.NetworkType.ANY)) {
|
||||
if (!leavingCall) {
|
||||
startPullingSignalingMessages(true);
|
||||
} else {
|
||||
hangup(true);
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue