Added entity option to bypass deep scraped check on release day update.

This commit is contained in:
DebaucheryLibrarian
2026-02-21 00:56:15 +01:00
parent 0f44b4d410
commit 6b768b6828
3 changed files with 27 additions and 13 deletions

View File

@@ -703,6 +703,9 @@ const networks = [
name: 'Nubiles',
url: 'https://www.nubiles.com',
description: 'Welcome to the teen megasite that started it all! Browse our massive HD collection of fresh legal hotties at Nubiles.net.',
options: {
forceDeepUpdate: true,
},
},
{
slug: 'perfectgonzo',
@@ -951,6 +954,7 @@ exports.seed = (knex) => Promise.resolve()
has_logo: network.hasLogo ?? true,
showcased: typeof network.showcased === 'boolean' ? network.showcased : true,
parameters: network.parameters,
options: network.options,
parent_id: grandParentNetworksBySlug[network.parent] || null,
}));
@@ -967,6 +971,7 @@ exports.seed = (knex) => Promise.resolve()
has_logo: network.hasLogo ?? true,
showcased: typeof network.showcased === 'boolean' ? network.showcased : true,
parameters: network.parameters,
options: network.options,
parent_id: parentNetworksBySlug[network.parent] || grandParentNetworksBySlug[network.parent] || null,
}));