mirror of
https://github.com/nextcloud/talk-android
synced 2025-03-11 18:10:44 +00:00
Try to fix a crash
Signed-off-by: Mario Danic <mario@lovelyhq.com>
This commit is contained in:
parent
654c46edc4
commit
bebb95b7f8
@ -1016,8 +1016,13 @@ public class CallController extends BaseController {
|
||||
public void onNext(GenericOverall genericOverall) {
|
||||
inCall = true;
|
||||
|
||||
connectingView.setVisibility(View.GONE);
|
||||
conversationView.setVisibility(View.VISIBLE);
|
||||
if (connectingView != null) {
|
||||
connectingView.setVisibility(View.GONE);
|
||||
}
|
||||
|
||||
if (conversationView != null) {
|
||||
conversationView.setVisibility(View.VISIBLE);
|
||||
}
|
||||
|
||||
if (!isPTTActive) {
|
||||
animateCallControls(false, 5000);
|
||||
|
Loading…
Reference in New Issue
Block a user