Added entity option to bypass deep scraped check on release day update.
This commit is contained in:
@@ -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,
|
||||
}));
|
||||
|
||||
|
||||
Reference in New Issue
Block a user