summaryrefslogtreecommitdiff
path: root/res/res_pjsip_publish_asterisk.c
diff options
context:
space:
mode:
Diffstat (limited to 'res/res_pjsip_publish_asterisk.c')
-rw-r--r--res/res_pjsip_publish_asterisk.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/res/res_pjsip_publish_asterisk.c b/res/res_pjsip_publish_asterisk.c
index 7e87762fd..fa5e4ced7 100644
--- a/res/res_pjsip_publish_asterisk.c
+++ b/res/res_pjsip_publish_asterisk.c
@@ -605,8 +605,7 @@ static int asterisk_publication_devicestate_state_change(struct ast_sip_publicat
}
/* We only accept JSON for content */
- if (pj_strcmp2(&body->content_type.type, "application") ||
- pj_strcmp2(&body->content_type.subtype, "json")) {
+ if (!ast_sip_is_content_type(&body->content_type, "application", "json")) {
ast_debug(2, "Received unsupported content type for Asterisk event on resource '%s'\n",
ast_sorcery_object_get_id(config));
return -1;
@@ -697,8 +696,7 @@ static int asterisk_publication_mwi_state_change(struct ast_sip_publication *pub
}
/* We only accept JSON for content */
- if (pj_strcmp2(&body->content_type.type, "application") ||
- pj_strcmp2(&body->content_type.subtype, "json")) {
+ if (!ast_sip_is_content_type(&body->content_type, "application", "json")) {
ast_debug(2, "Received unsupported content type for Asterisk event on resource '%s'\n",
ast_sorcery_object_get_id(config));
return -1;