Ihave tested with the patch from the commit , it works.
I modified the ki_dlgs_tags_count() function into
```
static int ki_dlgs_tags_count(sip_msg_t *msg, str *vtags)
{
int ret;
ret=dlgs_tags_count(msg, vtags);
if(ret<=0) {
return (ret-1);
}
return ret;
}
```
and it works
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio/issues/2568#issuecomment-736156779