We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee47c43 commit 050bd77Copy full SHA for 050bd77
toxav/msi.c
@@ -824,13 +824,17 @@ static void handle_init(MSICall *call, const MSIMessage *msg)
824
825
case MSI_CALL_REQUESTING: {
826
/* Call starting */
827
- LOGGER_API_INFO(call->session->tox,"MSI_CALL_REQUESTED:Friend answered our call");
+ LOGGER_API_INFO(call->session->tox,"MSI_CALL_REQUESTING:Friend sent an invite, but we are waiting for an call answer to our call");
828
+
829
+ /* if 2 friends call each other at the same time, ignore for now */
830
+#if 0
831
call->peer_capabilities = msg->capabilities.value;
832
call->state = MSI_CALL_ACTIVE;
833
834
if (invoke_callback(call, MSI_ON_START) == -1) {
835
goto FAILURE;
836
}
837
+#endif
838
839
break;
840
0 commit comments