From cd83831cde57e75e05427027e2345d7631799223 Mon Sep 17 00:00:00 2001 From: sim0n00ps Date: Tue, 12 Sep 2023 23:40:01 +0100 Subject: [PATCH] Fix for Archived Posts not downloading --- OF DL/Helpers/APIHelper.cs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/OF DL/Helpers/APIHelper.cs b/OF DL/Helpers/APIHelper.cs index 96c4dd38..ed78d549 100644 --- a/OF DL/Helpers/APIHelper.cs +++ b/OF DL/Helpers/APIHelper.cs @@ -1540,8 +1540,10 @@ public async Task GetArchived(string endpoint, string folder { { "limit", post_limit.ToString() }, { "order", "publish_date_desc" }, + { "skip_users", "all" }, { "format", "infinite" }, - { "label", "archived" } + { "label", "archived" }, + { "counters", "1" } }; UpdateGetParamsForDateSelection( @@ -1635,6 +1637,8 @@ public async Task GetArchived(string endpoint, string folder } } } + + return archivedCollection; } catch (Exception ex) {