Changeset dc45a85
- Timestamp:
- 2016-07-25T23:42:32Z (8 years ago)
- Branches:
- master
- Children:
- be23a64
- Parents:
- 57f81ec
- git-author:
- dequis <dx@…> (25-07-16 07:39:10)
- git-committer:
- dequis <dx@…> (25-07-16 23:42:32)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/twitter/twitter_lib.c
r57f81ec rdc45a85 384 384 td = ic->proto_data; 385 385 386 if (req->status_code != 200) { 387 /* Fail silently */ 388 return; 389 } 390 386 391 // Parse the data. 387 392 if (!(parsed = twitter_parse_response(ic, req))) { … … 419 424 // Check if the connection is stil active 420 425 if (!g_slist_find(twitter_connections, ic)) { 426 return; 427 } 428 429 if (req->status_code != 200) { 430 /* Fail silently */ 421 431 return; 422 432 }
Note: See TracChangeset
for help on using the changeset viewer.