diff options
Diffstat (limited to 'viewer/src/views/SplashScreen.vue')
-rw-r--r-- | viewer/src/views/SplashScreen.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/viewer/src/views/SplashScreen.vue b/viewer/src/views/SplashScreen.vue index a2f499a..dcb845d 100644 --- a/viewer/src/views/SplashScreen.vue +++ b/viewer/src/views/SplashScreen.vue | |||
@@ -31,7 +31,7 @@ export default class SplashScreen extends Vue { | |||
31 | } | 31 | } |
32 | 32 | ||
33 | fetchMarkdown() { | 33 | fetchMarkdown() { |
34 | FetchWithCheck.get(`${process.env.VUE_APP_DATA_URL}${this.config.resource}?${this.config.dontshowagainUID ?? ""}`) | 34 | FetchWithCheck.get(`${process.env.VUE_APP_DATA_URL}${this.config.resource}?${this.config.acknowledgmentKey ?? ""}`) |
35 | .then(response => response.text()) | 35 | .then(response => response.text()) |
36 | .then(text => (this.markdown = text)) | 36 | .then(text => (this.markdown = text)) |
37 | .finally(() => (this.isLoading = false)) | 37 | .finally(() => (this.isLoading = false)) |