Compare commits

..

No commits in common. "8e7b944b521ec30da5d94b9de8c51723bd159a15" and "cb459d4cc7449c8846a3ed373eda023ba87d3ae0" have entirely different histories.

4 changed files with 3 additions and 6 deletions

2
package-lock.json generated
View File

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

View File

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

View File

@ -6,7 +6,6 @@ const parentNetworks = [
slug: 'gamma',
name: 'Gamma Entertainment',
url: 'https://www.gammaentertainment.com',
alias: ['gammaentertainment'],
},
{
slug: 'hush',

View File

@ -20,7 +20,6 @@ function curateEntity(entity, includeParameters = false) {
description: entity.description,
slug: entity.slug,
type: entity.type,
aliases: entity.alias,
parent: curateEntity(entity.parent, includeParameters),
} : {};
@ -133,9 +132,8 @@ async function fetchEntity(entityId, type) {
if (type) {
queryBuilder
.where('entities.type', type)
.where('entities.slug', entityId)
.orWhere(knex.raw(':entityId = ANY(entities.alias)', { entityId }));
.where('entities.type', type);
return;
}