Compare commits

...

2 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
4 changed files with 6 additions and 6 deletions

View File

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

View File

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

2
package-lock.json generated
View File

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

View File

@ -1,6 +1,6 @@
{ {
"name": "traxxx", "name": "traxxx",
"version": "1.167.4", "version": "1.167.5",
"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": {