Compare commits

...

2 Commits

Author SHA1 Message Date
DebaucheryLibrarian 5ff83a9497 1.205.11 2022-01-29 23:39:13 +01:00
DebaucheryLibrarian 07cb39c756 Fixed movie cover index in GraphQL query. 2022-01-29 23:39:12 +01:00
5 changed files with 6 additions and 6 deletions

View File

@ -278,7 +278,7 @@ function bannerBackground() {
function pageTitle() {
return this.release
&& (this.release.title
|| (this.release.actors.length > 0 ? `${this.release.actors.map(actor => actor.name).join(', ')} for ${this.release.entity.name}` : null));
|| (this.release.actors.length > 0 ? `${this.release.actors.map((actor) => actor.name).join(', ')} for ${this.release.entity.name}` : null));
}
function showAlbum() {

View File

@ -516,7 +516,7 @@ const releaseFragment = `
id
title
slug
covers: moviesCovers {
covers: moviesCovers(orderBy: MEDIA_BY_MEDIA_ID__INDEX_ASC) {
media {
id
index

View File

@ -191,7 +191,7 @@ function initReleasesActions(store, router) {
isS3
}
}
covers: moviesCovers {
covers: moviesCovers(orderBy: MEDIA_BY_MEDIA_ID__INDEX_ASC) {
media {
id
path

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{
"name": "traxxx",
"version": "1.205.10",
"version": "1.205.11",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "traxxx",
"version": "1.205.10",
"version": "1.205.11",
"license": "ISC",
"dependencies": {
"@casl/ability": "^5.2.2",

View File

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