Remove unnecessary repetition checks from res_pjsip_exten_state

The PBX core already takes care of ensuring that repeated state changes
are not communicated to exten state consumers. Because the check in res_pjsip_exten_state
was incomplete, it was causing valid presence state changes not to be sent out. For instance,
if the presence state did not change but the message or subtype did, then no presence-related
NOTIFY request would be sent out.

closes issue ASTERISK-23672
Reported by Mark Michelson



git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/12@413173 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Mark Michelson
2014-05-01 15:41:43 +00:00
parent 37dc0e9623
commit 44b5ac115f

View File

@@ -334,11 +334,6 @@ static int state_changed(char *context, char *exten,
struct notify_task_data *task_data;
struct exten_state_subscription *exten_state_sub = data;
if (exten_state_sub->last_exten_state == info->exten_state &&
exten_state_sub->last_presence_state == info->presence_state) {
return 0;
}
if (!(task_data = alloc_notify_task_data(exten, exten_state_sub, info))) {
return -1;
}