Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • protocols/twitter/twitter_lib.c

    rd11822a r58d285a  
    234234        if ((ret = json_parse(req->reply_body, req->body_size)) == NULL) {
    235235                imcb_error(ic, "Could not retrieve %s: %s",
    236                            path, "JSON parse error");
     236                           path, "XML parse error");
    237237        }
    238238        return ret;
     
    308308
    309309                txl->list = g_slist_prepend(txl->list,
    310                                             g_strdup_printf("%" PRId64, c->u.array.values[i]->u.integer));
     310                                            g_strdup_printf("%" PRIu64, c->u.array.values[i]->u.integer));
    311311        }
    312312
     
    441441        txl = g_new0(struct twitter_xml_list, 1);
    442442        txl->list = td->noretweets_ids;
    443 
     443       
    444444        // Process the retweet ids
    445445        txl->type = TXL_ID;
     
    452452                        }
    453453                        txl->list = g_slist_prepend(txl->list,
    454                                                     g_strdup_printf("%" PRId64, c->u.integer));
     454                                                    g_strdup_printf("%"PRIu64, c->u.integer));
    455455                }
    456456        }
     
    710710                return;
    711711        if ((quoted = json_o_get(node, "quoted_status")) && quoted->type == json_object) {
    712                 /* New "retweets with comments" feature. Grab the
     712                /* New "retweets with comments" feature. Note that this info
     713                 * seems to be included in the streaming API only! Grab the
    713714                 * full message and try to insert it when we run into the
    714715                 * Tweet entity. */
     
    750751                        char *pos, *new;
    751752
    752                         /* Skip if a required field is missing, if the t.co URL is not in fact
    753                            in the Tweet at all, or if the full-ish one *is* in it already
    754                            (dupes appear, especially in streaming API). */
    755                         if (!kort || !disp || !(pos = strstr(*text, kort)) || strstr(*text, disp)) {
     753                        if (!kort || !disp || !(pos = strstr(*text, kort))) {
    756754                                continue;
    757755                        }
     
    978976                return;
    979977        }
    980 
     978       
    981979        /* Check this is not a tweet that should be muted */
    982         uid_str = g_strdup_printf("%" G_GUINT64_FORMAT, status->user->uid);
     980        uid_str = g_strdup_printf("%" PRIu64, status->user->uid);
    983981
    984982        if (g_slist_find_custom(td->mutes_ids, uid_str, (GCompareFunc)strcmp)) {
     
    11701168                char *uid_str;
    11711169                ut = twitter_xt_get_user(target);
    1172                 uid_str = g_strdup_printf("%" G_GUINT64_FORMAT, ut->uid);
     1170                uid_str = g_strdup_printf("%" PRIu64, ut->uid);
    11731171                if (!(found = g_slist_find_custom(td->mutes_ids, uid_str,
    11741172                                                  (GCompareFunc)strcmp))) {
     
    11771175                twitter_log(ic, "Muted user %s", ut->screen_name);
    11781176                if (getenv("BITLBEE_DEBUG")) {
    1179                         fprintf(stderr, "New mute: %s %"G_GUINT64_FORMAT"\n",
     1177                        fprintf(stderr, "New mute: %s %"PRIu64"\n",
    11801178                                ut->screen_name, ut->uid);
    11811179                }
     
    11841182                char *uid_str;
    11851183                ut = twitter_xt_get_user(target);
    1186                 uid_str = g_strdup_printf("%" G_GUINT64_FORMAT, ut->uid);
     1184                uid_str = g_strdup_printf("%" PRIu64, ut->uid);
    11871185                if ((found = g_slist_find_custom(td->mutes_ids, uid_str,
    11881186                                                (GCompareFunc)strcmp))) {
     
    11941192                twitter_log(ic, "Unmuted user %s", ut->screen_name);
    11951193                if (getenv("BITLBEE_DEBUG")) {
    1196                         fprintf(stderr, "New unmute: %s %"G_GUINT64_FORMAT"\n",
     1194                        fprintf(stderr, "New unmute: %s %"PRIu64"\n",
    11971195                                ut->screen_name, ut->uid);
    11981196                }
     
    16901688        };
    16911689
    1692         if (set_getbool(&ic->acc->set, "in_korea") && !in_reply_to) {
    1693                 g_free(args[3]);
    1694                 args[2] = "place_id";
    1695                 args[3] = g_strdup("c999e6a453e9ef72");
    1696                 in_reply_to = 1;
    1697         }
    1698 
    16991690        twitter_http(ic, TWITTER_STATUS_UPDATE_URL, twitter_http_post, ic, 1,
    17001691                     args, in_reply_to ? 4 : 2);
Note: See TracChangeset for help on using the changeset viewer.