Skip to content

Commit d826d94

Browse files
authored
Merge pull request #160 from eadwinCode/path_convertor_bug
fix: UUID path resolver in Model Controller
2 parents b0bfac4 + dff0fbd commit d826d94

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ninja_extra/controllers/model/path_resolver.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def compile_path(path: str) -> PathCompiledResult:
5555
if param_name in param_convertors:
5656
duplicated_params.add(param_name)
5757

58-
param_convertors[param_name] = STRING_TYPES[convertor]
58+
param_convertors[param_name] = STRING_TYPES[convertor.lower()]
5959

6060
if duplicated_params:
6161
names = ", ".join(sorted(duplicated_params))

0 commit comments

Comments
 (0)