This commit is contained in:
themsley-voiceflex 2025-01-21 00:17:21 +00:00 committed by GitHub
commit d2ecf78937
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -5069,9 +5069,9 @@ void sofia_presence_check_subscriptions(sofia_profile_t *profile, time_t now)
if (now) { if (now) {
struct pres_sql_cb cb = {profile, 0}; struct pres_sql_cb cb = {profile, 0};
if (profile->pres_type != PRES_TYPE_FULL) { if (profile->pres_type == PRES_TYPE_NONE) {
if (mod_sofia_globals.debug_presence > 0) { if (mod_sofia_globals.debug_presence > 0) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_WARNING, "check_subs: %s is passive, skipping\n", (char *) profile->name); switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_WARNING, "check_subs: %s is not presence enabled, skipping\n", (char *) profile->name);
} }
return; return;
} }