Updated Hentaied, added new sites.

This commit is contained in:
DebaucheryLibrarian
2026-02-06 23:06:08 +01:00
parent b79cf4fb78
commit 3aa53e431d
9 changed files with 169 additions and 101 deletions

View File

@@ -245,9 +245,10 @@ const networks = [
parent: 'porndoe',
},
{
slug: 'amnesiac',
name: 'Amnesiac',
hasLogo: true,
slug: 'hentaied',
rename: 'amnesiac',
name: 'Hentaied',
url: 'https://hentaied.pro',
},
{
slug: 'analvids',
@@ -945,7 +946,7 @@ exports.seed = (knex) => Promise.resolve()
alias: network.alias,
url: network.url,
description: network.description,
has_logo: network.hasLogo,
has_logo: network.hasLogo ?? true,
showcased: typeof network.showcased === 'boolean' ? network.showcased : true,
parameters: network.parameters,
parent_id: grandParentNetworksBySlug[network.parent] || null,
@@ -961,7 +962,7 @@ exports.seed = (knex) => Promise.resolve()
alias: network.alias,
url: network.url,
description: network.description,
has_logo: network.hasLogo,
has_logo: network.hasLogo ?? true,
showcased: typeof network.showcased === 'boolean' ? network.showcased : true,
parameters: network.parameters,
parent_id: parentNetworksBySlug[network.parent] || grandParentNetworksBySlug[network.parent] || null,