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

#10736: Make sure the call is not parent of another call when creating a new conference

parent 1dae8652
Branches
No related tags found
No related merge requests found
......@@ -1223,6 +1223,9 @@ render_drop(GtkTreeModel *model, GtkTreePath *dest_path, GtkTreeViewDropPosition
}
} else {
DEBUG("Dropped call on call, creating new conference or transferring");
calltree_remove_call(current_calls_tab, source_ID);
callable_obj_t *source_call = calllist_get_call(current_calls_tab, source_ID);
calltree_add_call(current_calls_tab, source_call, NULL);
cleanup_popup_data(&popup_data);
popup_data = g_new0(PopupData, 1);
popup_data->source_ID = g_strdup(source_ID);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment