mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-03 11:25:35 +00:00
res_pjsip_mwi_body_generator: Re-order the body items
Re-ordered the body items so Message-Account is second. Messages-Waiting: no Message-Account: sip:1571@<IP Removed>:5060 Voice-Message: 0/0 (0/0) ASTERISK-26065 #close Reported-by: Ross Beer Change-Id: If5d35a64656eac98c2dd5e490cc0b2807bed80c3
This commit is contained in:
@@ -61,11 +61,11 @@ static int mwi_generate_body_content(void *body, void *data)
|
||||
|
||||
ast_str_append(mwi, 0, "Messages-Waiting: %s\r\n",
|
||||
counter->new_msgs ? "yes" : "no");
|
||||
ast_str_append(mwi, 0, "Voice-Message: %d/%d (0/0)\r\n",
|
||||
counter->new_msgs, counter->old_msgs);
|
||||
if (!ast_strlen_zero(counter->message_account)) {
|
||||
ast_str_append(mwi, 0, "Message-Account: %s\r\n", counter->message_account);
|
||||
}
|
||||
ast_str_append(mwi, 0, "Voice-Message: %d/%d (0/0)\r\n",
|
||||
counter->new_msgs, counter->old_msgs);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
Reference in New Issue
Block a user