From e727071493183674060a0929a6ea82d757e969fc Mon Sep 17 00:00:00 2001 From: Sebin Nyshkim Date: Thu, 6 Jan 2022 06:43:02 +0100 Subject: [PATCH] fix: re-introduce timeout to prevent nsfw leakage --- src/App.vue | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/App.vue b/src/App.vue index bb68cf5..7e9ed9d 100644 --- a/src/App.vue +++ b/src/App.vue @@ -36,6 +36,10 @@ export default { showWarning() { if (!this.isConfirmedHorny) { this.isWarn = true; + + setTimeout(() => { + this.nsfw = false; + }, 1); } }, },