Compare commits

..

No commits in common. "04e9d290106ad52d96f66c82939071bee5512f5a" and "000105b175a53171c4201ba3659d24bd3780199f" have entirely different histories.

6 changed files with 3 additions and 8 deletions

2
package-lock.json generated
View File

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

View File

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

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.1 KiB

After

Width:  |  Height:  |  Size: 5.2 KiB

View File

@ -214,7 +214,7 @@ function getSites(networksMap) {
name: 'Japan',
slug: 'bangjapan',
url: 'https://www.bang.com/original/3079/bang-japan',
parameters: JSON.stringify({ siteId: 3079, ignore: true }),
parameters: JSON.stringify({ siteId: 3079 }),
network_id: networksMap.bang,
},
{

View File

@ -116,11 +116,6 @@ async function scrapeSites() {
const networks = await fetchIncludedSites();
const scrapedNetworks = await Promise.map(networks, async network => Promise.map(network.sites, async (site) => {
if (site.parameters?.ignore) {
logger.warn(`Ignoring ${network.name}: ${site.name}`);
return [];
}
const scraper = scrapers.releases[site.slug] || scrapers.releases[site.network.slug];
if (!scraper) {