aboutsummaryrefslogtreecommitdiff
path: root/src/App.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/App.vue')
-rw-r--r--src/App.vue3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/App.vue b/src/App.vue
index 803b53a..4c2d456 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -249,6 +249,9 @@ async function onEventDisplay(
if (targetEvent != null){
urlParams.append('incl', String(targetEvent.id));
}
+ if (store.reqImgs){
+ urlParams.append('imgonly', 'true');
+ }
let responseObj: EventResponseJson | null = await queryServer(urlParams);
if (responseObj == null){
console.log('WARNING: Server gave null response to event query');