Compare commits

..

No commits in common. "221203d88949732390add102d2855e84f410d819" and "2e64965fe5f90980121d32dac01c227a376eded5" have entirely different histories.

3 changed files with 4 additions and 4 deletions

4
package-lock.json generated
View File

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

View File

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

View File

@ -76,7 +76,7 @@ function withRelations(queryBuilder, withMedia) {
async function matchReleaseTags(releases) {
const tags = releases
.map((release) => release.tags).flat()
.map((tag) => tag?.trim().toLowerCase())
.map((tag) => tag.trim().toLowerCase())
.filter(Boolean);
const tagEntries = await knex('tags')