Skip to content

Need endcall before join webrtc video conference #103

@takyeyu

Description

@takyeyu

I just use this plugin and jitsi meet in my project, when I receive call, a in-call UI will be shown. I am listen to the onAnswer event, and want to join the webrtc vc if the call accept.

Fail, a message is shown, "There's another call is progress..."
cordova.plugins.CordovaCall.on('answer', function(){
cordova.plugins.jitsiplugin.join("room_abc");
});

If I call endCall first, I can go to the vc successfully, but there is a endcall beep sound, if there is any way i can do if I want to go to webrtc video conference when user answer call, or if there is any way to disable beep sound when calling endCall, thanks
cordova.plugins.CordovaCall.on('answer', function(){
cordova.plugins.CordovaCall.endCall(function(){
cordova.plugins.jitsiplugin.join("room_abc");
});
});

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions