aboutsummaryrefslogtreecommitdiff
path: root/src/rss_html_common.c
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2021-06-17 02:03:11 +0200
committerdec05eba <dec05eba@protonmail.com>2021-06-17 02:03:11 +0200
commitd9d1363ee5a06eb6632e15a14afe64ec80c3df56 (patch)
tree2c2fb02d290530d96e3f389588b272c0a410c65f /src/rss_html_common.c
parentf869fff9e9b27562837e90400bb3cca098a0376a (diff)
Do not show start after items in the downloaded list
Diffstat (limited to 'src/rss_html_common.c')
-rw-r--r--src/rss_html_common.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/rss_html_common.c b/src/rss_html_common.c
index 567671e..e5e44ab 100644
--- a/src/rss_html_common.c
+++ b/src/rss_html_common.c
@@ -41,6 +41,7 @@ int write_plugin_json_to_file(const char *dir, const char *filename, const char
cJSON_AddStringToObject(downloaded_item_json, "title", prev_download_items[i].title);
cJSON_AddStringToObject(downloaded_item_json, "time", item_created_timestamp_fake);
cJSON_AddStringToObject(downloaded_item_json, "url", prev_download_items[i].link);
+ cJSON_AddBoolToObject(downloaded_item_json, "filler", 1);
cJSON_AddItemToArray(downloaded_json, downloaded_item_json);
}