Compare commits
2 Commits
353fe6d6f8
...
1d38ba1141
Author | SHA1 | Date |
---|---|---|
|
1d38ba1141 | |
|
9ea317939b |
|
@ -1,12 +1,12 @@
|
||||||
{
|
{
|
||||||
"name": "traxxx",
|
"name": "traxxx",
|
||||||
"version": "1.234.0",
|
"version": "1.234.1",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "traxxx",
|
"name": "traxxx",
|
||||||
"version": "1.234.0",
|
"version": "1.234.1",
|
||||||
"license": "ISC",
|
"license": "ISC",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@aws-sdk/client-s3": "^3.458.0",
|
"@aws-sdk/client-s3": "^3.458.0",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "traxxx",
|
"name": "traxxx",
|
||||||
"version": "1.234.0",
|
"version": "1.234.1",
|
||||||
"description": "All the latest porn releases in one place",
|
"description": "All the latest porn releases in one place",
|
||||||
"main": "src/app.js",
|
"main": "src/app.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
|
@ -299,7 +299,7 @@ async function fetchLatest(site, page = 1, options) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
const { instanceToken } = options.beforeNetwork?.headers?.Instance
|
const { instanceToken } = options.beforeNetwork?.instanceToken
|
||||||
? options.beforeNetwork
|
? options.beforeNetwork
|
||||||
: await getSession(site, options.parameters, url);
|
: await getSession(site, options.parameters, url);
|
||||||
|
|
||||||
|
|
|
@ -330,8 +330,6 @@ async function request(method = 'get', url, body, requestOptions = {}, limiter)
|
||||||
return bypassCloudflareRequest(url, method, body, withCloudflareBypass, options);
|
return bypassCloudflareRequest(url, method, body, withCloudflareBypass, options);
|
||||||
}
|
}
|
||||||
|
|
||||||
console.log(url, options);
|
|
||||||
|
|
||||||
const res = await (body
|
const res = await (body
|
||||||
? http[method](url, body, options)
|
? http[method](url, body, options)
|
||||||
: http[method](url, options));
|
: http[method](url, options));
|
||||||
|
|
Loading…
Reference in New Issue