fix(cmd): cmd_time: Avoid extra loop iterations for single option

This commit is contained in:
2025-11-27 12:31:39 +03:00
committed by Jabber Developer
parent 84d6253561
commit 20af44196b

View File

@@ -5356,6 +5356,8 @@ cmd_time(ProfWin* window, const char* const command, gchar** args)
cons_bad_cmd_usage(command);
return TRUE;
}
if (!set_all)
break;
}
if (!set_all && n == ARRAY_SIZE(time_prefs)) {
cons_bad_cmd_usage(command);