forked from sim0n00ps/OF-DL
Compare commits
31 Commits
a91fb06885
...
cf1564bc7f
| Author | SHA1 | Date | |
|---|---|---|---|
| cf1564bc7f | |||
| 3855a5e862 | |||
| 07aaed9a07 | |||
| 0cfac356c5 | |||
| f40bd0527b | |||
| 03880fa1a0 | |||
| 67961ed80d | |||
| a91940cfd8 | |||
| f8d7e2277f | |||
| 7bf6271102 | |||
| a70fa0aa2f | |||
| deabe347cb | |||
| 579d62d889 | |||
| c75ac3a78c | |||
| 35126bd813 | |||
| 57457ad098 | |||
| 3d1da01943 | |||
| 381d92475a | |||
| b830eefb33 | |||
| 7cd9a35b12 | |||
| 5e65466c8a | |||
| c7c2a41331 | |||
| 2c66e76de9 | |||
| 7d3a693fd7 | |||
| b0193e2142 | |||
| 5b9022e086 | |||
| e1d2db90de | |||
| fa0f8c29fd | |||
| a1efdc6307 | |||
| c147a19a0a | |||
| 18fe2580ad |
@ -2262,7 +2262,8 @@ public class APIHelper : IAPIHelper
|
||||
{
|
||||
{ "limit", post_limit.ToString() },
|
||||
{ "order", "publish_date_desc" },
|
||||
{ "format", "infinite" }
|
||||
{ "format", "infinite" },
|
||||
{ "skip_users", "all" }
|
||||
};
|
||||
|
||||
var body = await BuildHeaderAndExecuteRequests(getParams, endpoint, GetHttpClient(config));
|
||||
@ -2435,7 +2436,8 @@ public class APIHelper : IAPIHelper
|
||||
{
|
||||
{ "limit", post_limit.ToString() },
|
||||
{ "order", "publish_date_desc" },
|
||||
{ "format", "infinite" }
|
||||
{ "format", "infinite" },
|
||||
{ "skip_users", "all" }
|
||||
};
|
||||
|
||||
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", Config, users);
|
||||
Dictionary<string, int> purchasedTabUsers = await m_ApiHelper.GetPurchasedTabUsers("/posts/paid/all", 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", p, Config, users);
|
||||
int userNum = 0;
|
||||
List<PurchasedTabCollection> purchasedTabCollections = await m_ApiHelper.GetPurchasedTab("/posts/paid/all", p, Config, users);
|
||||
int userNum = 1;
|
||||
int userCount = purchasedTabCollections.Count;
|
||||
foreach (PurchasedTabCollection purchasedTabCollection in purchasedTabCollections)
|
||||
{
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user