forked from sim0n00ps/OF-DL
Compare commits
29 Commits
cf1564bc7f
...
a91fb06885
| Author | SHA1 | Date | |
|---|---|---|---|
| a91fb06885 | |||
| 27e19a8749 | |||
| 95438ad538 | |||
| 5f1870f32f | |||
| 333e91d01c | |||
| 5a7e9ed74e | |||
| 2fcfe879e7 | |||
| 0987c7498b | |||
| 811cafe5ca | |||
| a2d57ba2f5 | |||
| f3815ba993 | |||
| 849f8d7f5f | |||
| a7121d0676 | |||
| 023a811643 | |||
| ced5607186 | |||
| e6c6a3a135 | |||
| bb0556b233 | |||
| 8c1852c8f7 | |||
| 66ac4df063 | |||
| 92eb2c6a34 | |||
| 536dff3762 | |||
| ce1a44f57e | |||
| 8d10d2b5e9 | |||
| f2c2e659c9 | |||
| 0d6b66f567 | |||
| 813d14215a | |||
| 47c31f98ef | |||
| d2b1db46b5 | |||
| 00777dbd52 |
@ -2262,8 +2262,7 @@ public class APIHelper : IAPIHelper
|
||||
{
|
||||
{ "limit", post_limit.ToString() },
|
||||
{ "order", "publish_date_desc" },
|
||||
{ "format", "infinite" },
|
||||
{ "skip_users", "all" }
|
||||
{ "format", "infinite" }
|
||||
};
|
||||
|
||||
var body = await BuildHeaderAndExecuteRequests(getParams, endpoint, GetHttpClient(config));
|
||||
@ -2436,8 +2435,7 @@ public class APIHelper : IAPIHelper
|
||||
{
|
||||
{ "limit", post_limit.ToString() },
|
||||
{ "order", "publish_date_desc" },
|
||||
{ "format", "infinite" },
|
||||
{ "skip_users", "all" }
|
||||
{ "format", "infinite" }
|
||||
};
|
||||
|
||||
var body = await BuildHeaderAndExecuteRequests(getParams, endpoint, GetHttpClient(config));
|
||||
|
||||
@ -1226,7 +1226,7 @@ public class Program
|
||||
}
|
||||
else if (hasSelectedUsersKVP.Key && hasSelectedUsersKVP.Value != null && hasSelectedUsersKVP.Value.ContainsKey("PurchasedTab"))
|
||||
{
|
||||
Dictionary<string, int> purchasedTabUsers = await m_ApiHelper.GetPurchasedTabUsers("/posts/paid/all", Config, users);
|
||||
Dictionary<string, int> purchasedTabUsers = await m_ApiHelper.GetPurchasedTabUsers("/posts/paid", Config, users);
|
||||
AnsiConsole.Markup($"[red]Checking folders for Users in Purchased Tab\n[/]");
|
||||
foreach (KeyValuePair<string, int> user in purchasedTabUsers)
|
||||
{
|
||||
@ -1273,8 +1273,8 @@ public class Program
|
||||
|
||||
Log.Debug($"Download path: {p}");
|
||||
|
||||
List<PurchasedTabCollection> purchasedTabCollections = await m_ApiHelper.GetPurchasedTab("/posts/paid/all", p, Config, users);
|
||||
int userNum = 1;
|
||||
List<PurchasedTabCollection> purchasedTabCollections = await m_ApiHelper.GetPurchasedTab("/posts/paid", p, Config, users);
|
||||
int userNum = 0;
|
||||
int userCount = purchasedTabCollections.Count;
|
||||
foreach (PurchasedTabCollection purchasedTabCollection in purchasedTabCollections)
|
||||
{
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user