X-Git-Url: https://git.wpitchoune.net/gitweb/?p=prss.git;a=blobdiff_plain;f=src%2Fttrss.c;h=5f86ba6c612e26fda513dab3bd8dc8bc5411bdab;hp=2e50e085fd53fe31eec3687891b284426da30dff;hb=b182d98e4534d7b84a4d99c08b0f343e80d64ee4;hpb=a3f79452df23ac3db9e7a827e16097322de377c0 diff --git a/src/ttrss.c b/src/ttrss.c index 2e50e08..5f86ba6 100644 --- a/src/ttrss.c +++ b/src/ttrss.c @@ -29,7 +29,7 @@ #include "http.h" #include "io.h" -#include "log.h" +#include #include "ttrss_cache.h" #include "ttrss_wsasync.h" #include "url.h" @@ -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) +{ + log_debug("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++; } }