修复遗留合并BUG

This commit is contained in:
lixinyue
2026-01-23 18:34:06 +08:00
parent 79cfabb45d
commit eccc208229
4 changed files with 31 additions and 17 deletions

View File

@@ -61,7 +61,7 @@ def _validate_config_id(config_id):
# Fall back to integer parsing
try:
parsed_id = int(config_id_stripped)
parsed_id = config_id_stripped
if parsed_id <= 0:
raise InvalidConfigError(
f"Configuration ID must be positive: {parsed_id}",