From bd2473caf071ade95df7bc31f8bd8858040b5ea7 Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Fri, 1 Mar 2024 22:19:23 -0500 Subject: [PATCH] main.py: blocklist instead of disable when user is disabled --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 7b2c6b1..ea93711 100755 --- a/main.py +++ b/main.py @@ -61,7 +61,7 @@ for user_info in authentik_get_users(): if user_info['is_active'] == True: user_active = "enabled" else: - user_active = "disabled" + user_active = "blocklisted" try: subscriber_info = listmonk_get_subscriber(user_info['username'])