Skip to content

Commit

Permalink
Add missing header to GetSubscriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
sim0n00ps committed Jul 7, 2023
1 parent 4edfdbe commit 4c8eadf
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions OF DL/Helpers/APIHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,8 @@ public async Task<Dictionary<string, int>> GetSubscriptions(string endpoint, boo
{
{ "limit", post_limit.ToString() },
{ "order", "publish_date_asc" },
{ "type", "all" }
{ "type", "all" },
{ "format", "infinite"}
};
}
else
Expand All @@ -178,8 +179,9 @@ public async Task<Dictionary<string, int>> GetSubscriptions(string endpoint, boo
{
{ "limit", post_limit.ToString() },
{ "order", "publish_date_asc" },
{ "type", "active" }
};
{ "type", "active" },
{ "format", "infinite"}
};
}
Dictionary<string, int> users = new Dictionary<string, int>();
string queryParams = "?";
Expand Down

0 comments on commit 4c8eadf

Please sign in to comment.