Skip to content

Commit

Permalink
Fix for Archived Posts not downloading
Browse files Browse the repository at this point in the history
  • Loading branch information
sim0n00ps committed Sep 12, 2023
1 parent 7521151 commit cd83831
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion OF DL/Helpers/APIHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1540,8 +1540,10 @@ public async Task<ArchivedCollection> 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(
Expand Down Expand Up @@ -1635,6 +1637,8 @@ public async Task<ArchivedCollection> GetArchived(string endpoint, string folder
}
}
}

return archivedCollection;
}
catch (Exception ex)
{
Expand Down

0 comments on commit cd83831

Please sign in to comment.