(no commit message)
[prss.git] / src / ttrss.c
index 4ac5fdf..cc7a369 100644 (file)
@@ -71,11 +71,11 @@ const char *ttrss_get_headline_content(struct headline *h)
                
                content = file_get_content(path);
                
-               if (content)
-                       file_set_content(path, content);
-               else
+               if (!content) {
                        content = ws_get_article_content(h->id);
-               
+                       file_set_content(path, content);
+               }
+
                g_free(path);
 
                return content;