Compare commits

...

2 Commits

Author SHA1 Message Date
DebaucheryLibrarian
ae247c7a91 1.250.11 2026-03-02 00:49:04 +01:00
DebaucheryLibrarian
d49e6ef488 Explicitly unsetting parameters in seed. 2026-03-02 00:49:01 +01:00
4 changed files with 6 additions and 6 deletions

4
package-lock.json generated
View File

@@ -1,12 +1,12 @@
{
"name": "traxxx",
"version": "1.250.10",
"version": "1.250.11",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "traxxx",
"version": "1.250.10",
"version": "1.250.11",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-s3": "^3.458.0",

View File

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

View File

@@ -929,7 +929,7 @@ exports.seed = (knex) => Promise.resolve()
description: network.description,
has_logo: network.hasLogo ?? true,
showcased: typeof network.showcased === 'boolean' ? network.showcased : true,
parameters: network.parameters,
parameters: network.parameters || null,
options: network.options,
parent_id: grandParentNetworksBySlug[network.parent] || null,
}));
@@ -946,7 +946,7 @@ exports.seed = (knex) => Promise.resolve()
description: network.description,
has_logo: network.hasLogo ?? true,
showcased: typeof network.showcased === 'boolean' ? network.showcased : true,
parameters: network.parameters,
parameters: network.parameters || null,
options: network.options,
parent_id: parentNetworksBySlug[network.parent] || grandParentNetworksBySlug[network.parent] || null,
}));

View File

@@ -15532,7 +15532,7 @@ exports.seed = (knex) => Promise.resolve()
alias: site.alias,
description: site.description,
url: site.url,
parameters: site.parameters,
parameters: site.parameters || null,
options: site.options,
parent_id: networksMap[site.parent],
priority: site.priority || 0,