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() { function pageTitle() {
return this.release return this.release
&& (this.release.title && (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() { function showAlbum() {

View File

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

View File

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

4
package-lock.json generated
View File

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

View File

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