Compare commits

...

4 Commits

Author SHA1 Message Date
DebaucheryLibrarian 101f5a1453 1.167.5 2021-02-05 01:29:58 +01:00
DebaucheryLibrarian 4ae130a646 Fixed album navigation interfering with filter navigation. 2021-02-05 01:29:53 +01:00
DebaucheryLibrarian bd59bdd215 1.167.4 2021-02-04 23:28:15 +01:00
DebaucheryLibrarian 054ea6ac66 Explicitly ordering release photos and covers by stored index. 2021-02-04 23:28:10 +01:00
5 changed files with 8 additions and 8 deletions

View File

@ -402,10 +402,10 @@ function showAlbum() {
}
async function watchRoute(to, from) {
console.log(to, from);
if (to.hash !== '#album' && from.hash !== '#album') {
await this.fetchActor();
}
}
async function mounted() {
await this.fetchActor();

View File

@ -102,7 +102,7 @@ function showAlbum() {
}
async function watchRoute(to, from) {
if (to.params.pageNumber !== from.params.pageNumber) {
if (to.hash !== '#album' && from.hash !== '#album') {
await this.fetchReleases();
}
}

View File

@ -113,7 +113,7 @@ const releasePosterFragment = `
`;
const releaseCoversFragment = `
covers: releasesCovers {
covers: releasesCovers(orderBy: MEDIA_BY_MEDIA_ID__INDEX_ASC) {
media {
id
index
@ -133,7 +133,7 @@ const releaseCoversFragment = `
`;
const releasePhotosFragment = `
photos: releasesPhotos {
photos: releasesPhotos(orderBy: MEDIA_BY_MEDIA_ID__INDEX_ASC) {
media {
id
index

2
package-lock.json generated
View File

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

View File

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