Compare commits

...

2 Commits

Author SHA1 Message Date
DebaucheryLibrarian c59f05a2f8 1.151.3 2021-01-02 03:20:45 +01:00
DebaucheryLibrarian 8739ec08cf Fixed qu init selector. Fixed Aziani scene page scope. 2021-01-02 03:20:39 +01:00
4 changed files with 12 additions and 12 deletions

2
package-lock.json generated
View File

@ -1,6 +1,6 @@
{
"name": "traxxx",
"version": "1.151.2",
"version": "1.151.3",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

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

View File

@ -117,7 +117,7 @@ async function fetchLatest(site, page) {
}
async function fetchScene(url, site) {
const res = await get(url, '.page-content .row');
const res = await get(url, '.trailer');
if (res.ok) {
return scrapeScene(res.item, url, site);

View File

@ -408,8 +408,12 @@ const quFuncs = {
videos,
};
function init(element, window) {
if (!element) return null;
function init(context, selector, window) {
if (!context) {
return null;
}
const element = selector ? context.querySelector(selector) : context;
const legacyContextFuncs = Object.entries(legacyFuncs) // dynamically attach methods with context
.reduce((acc, [key, func]) => ({
@ -444,21 +448,17 @@ function init(element, window) {
function initAll(context, selector, window) {
if (Array.isArray(context)) {
return context.map(element => init(element, window));
return context.map(element => init(element, null, window));
}
return Array.from(context.querySelectorAll(selector))
.map(element => init(element, window));
.map(element => init(element, null, window));
}
function extract(htmlValue, selector, options) {
const { window } = new JSDOM(htmlValue, { virtualConsole, ...options });
if (selector) {
return init(window.document.querySelector(selector), window);
}
return init(window.document, window);
return init(window.document, selector, window);
}
function extractAll(htmlValue, selector, options) {