File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -565,8 +565,9 @@ final class CommandHandler
565565
566566 if (user.obfuscation_type == ObfuscationType.rotated)
567567 obfuscation_type = " rotated" ;
568+
568569 else if (user.obfuscation_type != ObfuscationType.none)
569- obfuscation_type = (cast (uint ) user.obfuscation_type).text ;
570+ obfuscation_type = text (cast (uint ) user.obfuscation_type);
570571 }
571572 else {
572573 const user_stats = server.db.user_stats(username);
@@ -699,7 +700,7 @@ final class CommandHandler
699700
700701 else if (user.obfuscation_type != ObfuscationType.none)
701702 obfuscation_type = text(
702- quot, ( cast (uint ) user.obfuscation_type).text , quot
703+ quot, cast (uint ) user.obfuscation_type, quot
703704 );
704705
705706 Appender! string output;
You can’t perform that action at this time.
0 commit comments