@lnicola commented on this pull request.
#include "../presence/event_list.h"
#include "presence_reginfo.h"
int reginfo_add_events(void)
{
pres_ev_t event;
+ /* read default expires from presence, if exists */
+ int pres_default_expires = 3600;
+ modparam_t type = 0;
+ int *param = find_param_export(find_module_by_name("presence"),
"default_expires", INT_PARAM, &type);
+ if ( param && (type == INT_PARAM) )
```suggestion
if(param && type == INT_PARAM)
```
--
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio/pull/3003#pullrequestreview-852948799
You are receiving this because you are subscribed to this thread.
Message ID: <kamailio/kamailio/pull/3003/review/852948799(a)github.com>