Skip to content

Commit

Permalink
Merge pull request #160 from eadwinCode/path_convertor_bug
Browse files Browse the repository at this point in the history
fix: UUID path resolver in Model Controller
  • Loading branch information
eadwinCode authored Jul 22, 2024
2 parents b0bfac4 + dff0fbd commit d826d94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ninja_extra/controllers/model/path_resolver.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def compile_path(path: str) -> PathCompiledResult:
if param_name in param_convertors:
duplicated_params.add(param_name)

param_convertors[param_name] = STRING_TYPES[convertor]
param_convertors[param_name] = STRING_TYPES[convertor.lower()]

if duplicated_params:
names = ", ".join(sorted(duplicated_params))
Expand Down

0 comments on commit d826d94

Please sign in to comment.