Browse Source

don't retry XMLRPC callback if endpoint says the ID was not found

Change-Id: I943f8738e1c92345fc983a3a8ab7d61d00b924ad
changes/63/21163/3
Richard Fuchs 8 years ago
parent
commit
539e063992
1 changed files with 6 additions and 2 deletions
  1. +6
    -2
      daemon/call.c

+ 6
- 2
daemon/call.c View File

@ -369,8 +369,12 @@ retry:
if (r)
xmlrpc_DECREF(r);
if (e.fault_occurred)
goto fault;
if (e.fault_occurred) {
if (strcasestr(e.fault_string, "dialog not found"))
;
else
goto fault;
}
xmlrpc_client_destroy(c);
xh->tags_urls = g_slist_delete_link(xh->tags_urls, xh->tags_urls);


Loading…
Cancel
Save