aboutsummaryrefslogtreecommitdiff
path: root/viewer
diff options
context:
space:
mode:
authorZero~Informatique2020-02-13 19:44:36 +0100
committerpacien2020-02-13 22:26:42 +0100
commit3503459d9c6e1f601702d79a560514dc44462277 (patch)
tree39a82af210a506770611bda3b0efd721b9b4d9b1 /viewer
parent6c51a97bce7963fba47892602c1214b3bcdcd410 (diff)
downloadldgallery-3503459d9c6e1f601702d79a560514dc44462277.tar.gz
viewer: fixed travis error
(cherry picked from commit 63fd4f6956bba4158a0d35e64862a69427da08e6)
Diffstat (limited to 'viewer')
-rw-r--r--viewer/src/store/galleryStore.ts1
1 files changed, 0 insertions, 1 deletions
diff --git a/viewer/src/store/galleryStore.ts b/viewer/src/store/galleryStore.ts
index d774588..e7d70f8 100644
--- a/viewer/src/store/galleryStore.ts
+++ b/viewer/src/store/galleryStore.ts
@@ -74,7 +74,6 @@ export default class GalleryStore extends VuexModule {
74 // Fetches the gallery's JSON metadata 74 // Fetches the gallery's JSON metadata
75 @action async fetchGalleryItems() { 75 @action async fetchGalleryItems() {
76 const root = this.config?.galleryRoot ?? ''; 76 const root = this.config?.galleryRoot ?? '';
77 const timestamp = this.config?.generationTimestamp ?? 0;
78 return fetch(`${process.env.VUE_APP_DATA_URL}${root}index.json`, { cache: "no-cache" }) 77 return fetch(`${process.env.VUE_APP_DATA_URL}${root}index.json`, { cache: "no-cache" })
79 .then(response => response.json()) 78 .then(response => response.json())
80 .then(this.setGalleryItemsRoot) 79 .then(this.setGalleryItemsRoot)