We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce1d645 commit d4b8f37Copy full SHA for d4b8f37
Parsers/Admin tool - Verify.js
@@ -63,7 +63,12 @@ if (
63
verificationStatus != null
64
? grUser.setValue("verified", verificationStatus)
65
: grUser.getValue("verified");
66
- description.length > 0 ? grUser.setValue("user_info", description) : null;
+ if (description.length > 0) {
67
+ grUser.setValue("user_info", description);
68
+ } else {
69
+ description = grUser.getValue("user_info");
70
+ }
71
+
72
grUser.update();
73
74
messageBody =
0 commit comments