commit 74292cba96c89561d4b6f7fa7076143153efde93
parent 7f733a4db5c7bb4e15bb759f403aff045dcae654
Author: Christian Grothoff <christian@grothoff.org>
Date: Sun, 12 Jul 2026 09:41:02 +0200
fix inverted check
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/backend/taler-merchant-kyccheck.c b/src/backend/taler-merchant-kyccheck.c
@@ -2008,7 +2008,7 @@ force_check_now (void *cls,
continue;
/* If we are not actively checking with the exchange, do start
to check immediately */
- if (NULL != i->kyc)
+ if (NULL == i->kyc)
{
i->due = GNUNET_TIME_absolute_get (); /* now! */
if (NULL != i->task)