Skip to content
Snippets Groups Projects
Commit a83b7119 authored by Alexandre Savard's avatar Alexandre Savard
Browse files

fixing dbus get recording litle bug

parent e3367715
No related branches found
No related tags found
No related merge requests found
......@@ -1123,7 +1123,7 @@ dbus_set_record(const call_t * c)
}
}
gboolean
gboolean*
dbus_get_is_recording(const call_t * c)
{
g_print("calling dbus_get_is_recording on CallManager\n");
......@@ -1132,12 +1132,14 @@ dbus_get_is_recording(const call_t * c)
org_sflphone_SFLphone_CallManager_get_is_recording (
callManagerProxy,
c->callID,
isRecording,
&isRecording,
&error);
if(error)
{
g_error_free(error);
}
g_print("RECORDING: %i \n",isRecording);
return isRecording;
}
void
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment