X-Git-Url: https://git.wpitchoune.net/gitweb/?p=prss.git;a=blobdiff_plain;f=src%2Fttrss.c;h=d77007af5e98afa1ca03c1df69e245508d02229f;hp=2e50e085fd53fe31eec3687891b284426da30dff;hb=c6fa04234bdb4ad62f0ed0e3f9a619a2ff007e8a;hpb=a3f79452df23ac3db9e7a827e16097322de377c0 diff --git a/src/ttrss.c b/src/ttrss.c index 2e50e08..d77007a 100644 --- a/src/ttrss.c +++ b/src/ttrss.c @@ -46,7 +46,7 @@ char *ttrss_get_headline_content(struct headline *h) } else { log_debug("ttrss_get_headline_content: cache miss"); content = ws_get_article_content(h->id); - cache_put(h, content); + cache_put(h->id, content); } return content; @@ -93,6 +93,14 @@ struct headline *ttrss_get_headline(int id) return feeds_get_headline(data, id); } +static void get_article_content_cbk(int id, const char *content) +{ + printf("get_article_content_cbk %d\n", id); + + if (content) + cache_put(id, content); +} + void ttrs_download_headline_content(struct feed **feeds) { struct feed **fcur; @@ -107,8 +115,10 @@ void ttrs_download_headline_content(struct feed **feeds) (*fcur)->title); while (hcur && *hcur) { - if (!cache_exists(*hcur)) - free(ttrss_get_headline_content(*hcur)); + if (!cache_exists(*hcur)) { + ws_async_get_article_content + ((*hcur)->id, get_article_content_cbk); + } hcur++; } }