diff options
| -rw-r--r-- | protocols/twitter/twitter_lib.c | 4 | 
1 files changed, 4 insertions, 0 deletions
| diff --git a/protocols/twitter/twitter_lib.c b/protocols/twitter/twitter_lib.c index dd9c3ac6..00e3a2ee 100644 --- a/protocols/twitter/twitter_lib.c +++ b/protocols/twitter/twitter_lib.c @@ -734,6 +734,10 @@ void twitter_get_timeline(struct im_connection *ic, gint64 next_cursor)  	}  	if (td->flags & TWITTER_DOING_TIMELINE) { +		/* This shouldn't normally happen at all but I'm currently hunting a bug +		   where it does. Instead of having users suffer under it, have a work- +		   around with a warning. */ +		td->flags |= TWITTER_DOING_TIMELINE_SLOW;  		return;  	} | 
