From d49562fd8b2f6d54364488aced9c407657305079 Mon Sep 17 00:00:00 2001 From: Jarryd Long Date: Tue, 19 Jan 2021 20:19:09 +0200 Subject: [PATCH] V3 Invisible reCaptcha Bug Fix --- fields/recaptcha/field.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/fields/recaptcha/field.php b/fields/recaptcha/field.php index cbd6e44..b7ad6a7 100644 --- a/fields/recaptcha/field.php +++ b/fields/recaptcha/field.php @@ -80,6 +80,9 @@ function init_recaptcha_(){ init_recaptcha_(); }); + //refresh it every 2 minutes. + setInterval(function () { init_recaptcha_(); }, 2 * 60 * 1000); + init_recaptcha_(); }); });