<div dir="ltr"><div>Hi,</div><div><br></div><div>in presence module subscribe.c send_fast_notify is not always honored.<br></div><div>by changing this line i got it working. does this make sense ?</div><div><br></div><div>
thanks</div><div><br></div><div>diff --git a/modules/presence/subscribe.c b/modules/presence/subscribe.c</div><div>index 3074ca9..f5dd6aa 100644</div><div>--- a/modules/presence/subscribe.c</div><div>+++ b/modules/presence/subscribe.c</div>
<div>@@ -682,7 +682,7 @@</div><div> <span class="" style="white-space:pre">                </span>}</div><div> <span class="" style="white-space:pre">                </span>else</div><div> <span class="" style="white-space:pre">             </span>{</div><div>
-<span class="" style="white-space:pre">                      </span>if(notify(subs, NULL, NULL, 0)< 0)</div><div>+<span class="" style="white-space:pre">                     </span>if(send_fast_notify && (notify(subs, NULL, NULL, 0 )< 0))</div>
<div> <span class="" style="white-space:pre">                  </span>{</div><div> <span class="" style="white-space:pre">                                </span>LM_ERR("Could not send notify\n");</div><div> <span class="" style="white-space:pre">                             </span>goto error;</div>
<div><br></div><div><br></div><div><br></div></div>