diff options
author | Marius Halden <marius.h@lden.org> | 2016-08-01 18:28:59 +0200 |
---|---|---|
committer | Marius Halden <marius.h@lden.org> | 2016-08-01 18:28:59 +0200 |
commit | 71feefea6f354637e633e0136aff15b688c6e305 (patch) | |
tree | e14068905f898ffd92379d5e216631653ad99841 /protocols/twitter/twitter.h | |
parent | d68cb991f84498ecc54ae9f3c542f3201beab001 (diff) |
Turn some lists into hashtables
Diffstat (limited to 'protocols/twitter/twitter.h')
-rw-r--r-- | protocols/twitter/twitter.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/protocols/twitter/twitter.h b/protocols/twitter/twitter.h index 8d17da58..bf47d4fc 100644 --- a/protocols/twitter/twitter.h +++ b/protocols/twitter/twitter.h @@ -60,10 +60,10 @@ struct twitter_data { guint64 timeline_id; GSList *follow_ids; - GSList *mutes_ids; - GSList *blocks_ids; - GSList *noretweets_ids; GSList *filters; + GHashTable *mutes_ids; + GHashTable *blocks_ids; + GHashTable *noretweets_ids; guint64 last_status_id; /* For undo */ gint main_loop_id; |