Compare commits

..

No commits in common. "a406eb584d85101a326c87571001d0e0c411d76d" and "0a8a7ff9a58800d7906ee4226f32f4abce3a327b" have entirely different histories.

4 changed files with 3 additions and 7 deletions

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{
"name": "traxxx",
"version": "1.201.4",
"version": "1.201.3",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "traxxx",
"version": "1.201.4",
"version": "1.201.3",
"license": "ISC",
"dependencies": {
"@casl/ability": "^5.2.2",

View File

@ -1,6 +1,6 @@
{
"name": "traxxx",
"version": "1.201.4",
"version": "1.201.3",
"description": "All the latest porn releases in one place",
"main": "src/app.js",
"scripts": {

View File

@ -549,8 +549,6 @@ async function fetchHttpSource(source, tempFileTarget, hashStream) {
throw new Error(`Response ${res.status} not OK`);
}
console.log(res.headers);
return {
mimetype: (source.expectType
? source.expectType[res.headers['content-type']]

View File

@ -122,7 +122,6 @@ async function finalizeResult(res, options) {
body: html,
html,
status: res.statusCode,
headers: res.headers,
document: window?.document || null,
window,
ok: res.statusCode >= 200 && res.statusCode <= 299,
@ -133,7 +132,6 @@ async function finalizeResult(res, options) {
...res,
body: res.body,
status: res.statusCode,
headers: res.headers,
ok: res.statusCode >= 200 && res.statusCode <= 299,
};
}