Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • protocols/twitter/twitter_lib.c

    r0fff0b2 r32bea82  
    727727        gboolean include_mentions = set_getbool(&ic->acc->set, "fetch_mentions");
    728728
     729        if ((td->flags & 0xf0000) == (TWITTER_DOING_TIMELINE | TWITTER_DOING_TIMELINE_SLOW)) {
     730                imcb_log(ic, "Connection seems to have stalled again.\n"
     731                             "This is a known bug, if you see this happen a lot "
     732                             "please generate some traffic dumps.");
     733                td->flags &= ~0xf0000;
     734        }
     735
    729736        if (td->flags & TWITTER_DOING_TIMELINE) {
     737                /* This shouldn't normally happen at all but I'm currently hunting a bug
     738                   where it does. Instead of having users suffer under it, have a work-
     739                   around with a warning. */
     740                td->flags |= TWITTER_DOING_TIMELINE_SLOW;
    730741                return;
    731742        }
Note: See TracChangeset for help on using the changeset viewer.