From ae1d0b9ce4d67e852ad9cabaf270d075cfa940c5 Mon Sep 17 00:00:00 2001 From: Chris Helming Date: Mon, 3 Nov 2025 10:56:28 -0500 Subject: [PATCH] verify admin - fix description output --- Parsers/Admin tool - Verify.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Parsers/Admin tool - Verify.js b/Parsers/Admin tool - Verify.js index d1bce03..a5d0ae5 100644 --- a/Parsers/Admin tool - Verify.js +++ b/Parsers/Admin tool - Verify.js @@ -63,7 +63,12 @@ if ( verificationStatus != null ? grUser.setValue("verified", verificationStatus) : grUser.getValue("verified"); - description.length > 0 ? grUser.setValue("user_info", description) : null; + if (description.length > 0) { + grUser.setValue("user_info", description); + } else { + description = grUser.getValue("user_info"); + } + grUser.update(); messageBody =