From cbdafac999d508521c881694b192001844da3c5b Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Mon, 17 Jan 2022 14:54:57 +0100 Subject: [PATCH] Web check-in: Fix search --- .../static/pretixplugins/webcheckin/components/app.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pretix/plugins/webcheckin/static/pretixplugins/webcheckin/components/app.vue b/src/pretix/plugins/webcheckin/static/pretixplugins/webcheckin/components/app.vue index c9d21c17e8..c6af56038d 100644 --- a/src/pretix/plugins/webcheckin/static/pretixplugins/webcheckin/components/app.vue +++ b/src/pretix/plugins/webcheckin/static/pretixplugins/webcheckin/components/app.vue @@ -455,7 +455,7 @@ export default { if (!response.ok && [401, 403].includes(response.status)) { window.location.href = '/control/login?next=' + encodeURIComponent(window.location.pathname + window.location.search + window.location.hash); } - response.json() + return response.json() }) .then(data => { this.searchLoading = false