diff options
author | dequis <dx@dxzone.com.ar> | 2017-04-11 20:44:58 -0300 |
---|---|---|
committer | dequis <dx@dxzone.com.ar> | 2017-04-11 20:44:58 -0300 |
commit | 952e264c39b7b69d96bd0b102a76504d9ac61bfa (patch) | |
tree | c889759f6b295f931d881c853273700f3d81ad57 /protocols/twitter/twitter.c | |
parent | 051506399e1455d88f6179010129308c754be936 (diff) |
twitter: experimental support for place_id
Diffstat (limited to 'protocols/twitter/twitter.c')
-rw-r--r-- | protocols/twitter/twitter.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/protocols/twitter/twitter.c b/protocols/twitter/twitter.c index 8bc6140a..2b432a19 100644 --- a/protocols/twitter/twitter.c +++ b/protocols/twitter/twitter.c @@ -575,6 +575,9 @@ static void twitter_init(account_t * acc) s = set_add(&acc->set, "_last_tweet", "0", NULL, acc); s->flags |= SET_HIDDEN | SET_NOSAVE; + s = set_add(&acc->set, "in_korea", "false", set_eval_bool, acc); + s->flags |= SET_HIDDEN; + if (strcmp(acc->prpl->name, "twitter") == 0) { s = set_add(&acc->set, "stream", "true", set_eval_bool, acc); s->flags |= ACC_SET_OFFLINE_ONLY; |