@miconda commented on this pull request.
@@ -1146,7 +1146,8 @@ int tps_db_load_branch(
if((get_cseq(msg)->method_id == METHOD_SUBSCRIBE) || ((get_cseq(msg)->method_id == METHOD_NOTIFY) - && (msg->event && msg->event->len > 0))) { + && (msg->event && msg->event->len > 0 + && strncmp(msg->event->body.s, "talk", 4) != 0))) {
Here is a new condition added that only event "talk" is accepted. The previous version accepted any other value there, so it can break something that was working before.