From 776d7214972a27365822d8408db294396b705dbd Mon Sep 17 00:00:00 2001 From: Andrea Vos Date: Mon, 1 Feb 2021 19:13:34 +0100 Subject: [PATCH] [census] instead of disallowing suspicious answers, mark them - just anon users, tho --- routes/census.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/routes/census.vue b/routes/census.vue index 08b8274b2..9a730fe63 100644 --- a/routes/census.vue +++ b/routes/census.vue @@ -169,7 +169,7 @@ }; }, mounted() { - if (process.client) { + if (process.client && !this.$user()) { this.finished = !!parseInt(window.localStorage.getItem('census-finished') || 0); } },