Changes in / [3b0c1c3:fa1bc1d]


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • protocols/twitter/twitter_lib.c

    r3b0c1c3 rfa1bc1d  
    704704static void expand_entities(char **text, const json_value *node, const json_value *extended_node)
    705705{
    706         json_value *entities, *extended_entities, *quoted, *quoted_permalink;
    707         char *quote_url = NULL, *quote_text = NULL, *quote_kort = NULL;
    708         gboolean quote_used = FALSE;
     706        json_value *entities, *extended_entities, *quoted;
     707        char *quote_url = NULL, *quote_text = NULL;
    709708
    710709        if (!((entities = json_o_get(node, "entities")) && entities->type == json_object))
     
    717716                quote_text = g_strdup_printf("@%s: %s", txs->user->screen_name, txs->text);
    718717                quote_url = g_strdup_printf("%s/status/%" G_GUINT64_FORMAT, txs->user->screen_name, txs->id);
    719                 if ((quoted_permalink = json_o_get(node, "quoted_status_permalink")) && quoted->type == json_object) {
    720                         quote_kort = json_o_strdup(quoted_permalink, "url");
    721                 }
    722718                txs_free(txs);
    723719        } else {
     
    763759                                format = "%s<%s> [%s]%s";
    764760                                disp = quote_text;
    765                                 quote_used = TRUE;
    766761                        }
    767762
     
    774769                }
    775770        }
    776 
    777         if (quote_text && !quote_used) {
    778                 const char *url = quote_kort ?: quote_url;
    779                 char *new = g_strdup_printf("%s <%s>[%s]", *text, url, quote_text);
    780                 g_free(*text);
    781                 *text = new;
    782         }
    783 
    784771        g_free(quote_text);
    785772        g_free(quote_url);
    786         g_free(quote_kort);
    787773}
    788774
Note: See TracChangeset for help on using the changeset viewer.