1
1
mirror of https://github.com/profanity-im/profanity.git synced 2025-02-02 15:08:15 -05:00

Default contact subscription set to "none"

This commit is contained in:
James Booth 2012-11-27 21:59:48 +00:00
parent ebf8911ffc
commit 4b460100ad

@ -62,7 +62,7 @@ p_contact_new(const char * const jid, const char * const name,
if (subscription != NULL) if (subscription != NULL)
contact->subscription = strdup(subscription); contact->subscription = strdup(subscription);
else else
contact->subscription = NULL; contact->subscription = strdup("none");;
return contact; return contact;
} }