diff options
Diffstat (limited to 'protocols/account.c')
-rw-r--r-- | protocols/account.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/protocols/account.c b/protocols/account.c index 1f12f56f..b5ff4e88 100644 --- a/protocols/account.c +++ b/protocols/account.c @@ -59,6 +59,9 @@ account_t *account_add(bee_t *bee, struct prpl *prpl, char *user, char *pass) s = set_add(&a->set, "auto_reconnect", "true", set_eval_bool, a); + s = set_add(&a->set, "handle_unknown", NULL, NULL, a); + s->flags |= SET_NULL_OK; + s = set_add(&a->set, "nick_format", NULL, NULL, a); s->flags |= SET_NULL_OK; |