diff options
author | Marius Halden <marius.h@lden.org> | 2017-01-01 21:52:49 +0100 |
---|---|---|
committer | Marius Halden <marius.h@lden.org> | 2017-01-01 21:52:49 +0100 |
commit | efaa514039a4b907e2c5c6309295c66b27b1f691 (patch) | |
tree | 55f4962e14be3df95c4168d06a8d1b95ccfb8298 /protocols/account.c | |
parent | d35affbcea87f453fb20c4bb545a10b668eae81b (diff) | |
parent | 2e8523b30bafa86685655001457a2615936b646a (diff) |
Merge branch 'master' into patched-master
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 aa1ffe61..80b1d020 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; |