mirror of
https://github.com/nextcloud/talk-android.git
synced 2024-11-22 21:15:30 +03:00
Fix bugs
Signed-off-by: Mario Danic <mario@lovelyhq.com>
This commit is contained in:
parent
8357a1bb65
commit
73dcfff367
1 changed files with 2 additions and 1 deletions
|
@ -899,6 +899,7 @@ public class CallActivity extends AppCompatActivity {
|
|||
|
||||
@Override
|
||||
public void onNext(CallOverall callOverall) {
|
||||
callSession = callOverall.getOcs().getData().getSessionId();
|
||||
performCall();
|
||||
}
|
||||
|
||||
|
@ -1249,7 +1250,7 @@ public class CallActivity extends AppCompatActivity {
|
|||
}
|
||||
|
||||
private void leaveRoom() {
|
||||
ncApi.leaveRoom(credentials, ApiUtils.getRoom(baseUrl, roomToken))
|
||||
ncApi.leaveRoom(credentials, ApiUtils.getUrlForRoomParticipants(baseUrl, roomToken))
|
||||
.subscribeOn(Schedulers.newThread())
|
||||
.observeOn(AndroidSchedulers.mainThread())
|
||||
.subscribe(new Observer<GenericOverall>() {
|
||||
|
|
Loading…
Reference in a new issue