mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-21 21:28:08 +00:00
Improve status log.
This commit is contained in:
parent
77681fa4bb
commit
96ea72f762
1 changed files with 3 additions and 1 deletions
|
|
@ -928,7 +928,9 @@ char * linphone_presence_activity_to_string(const LinphonePresenceActivity *acti
|
|||
else
|
||||
acttype_str = presence_activity_type_to_string(acttype);
|
||||
|
||||
return ms_strdup_printf("%s: %s", acttype_str, (description == NULL) ? "" : description);
|
||||
return ms_strdup_printf("%s%s%s", acttype_str,
|
||||
(description == NULL) ? "" : ": ",
|
||||
(description == NULL) ? "" : description);
|
||||
}
|
||||
|
||||
LinphonePresenceActivityType linphone_presence_activity_get_type(const LinphonePresenceActivity *activity) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue