mirror of
https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
synced 2025-12-06 10:31:17 -08:00
Return http 400 instead of 404 on invalid sampler
This commit is contained in:
parent
feee37d75f
commit
3971c01562
1 changed files with 1 additions and 1 deletions
|
|
@ -43,7 +43,7 @@ def script_name_to_index(name, scripts):
|
|||
def validate_sampler_name(name):
|
||||
config = sd_samplers.all_samplers_map.get(name, None)
|
||||
if config is None:
|
||||
raise HTTPException(status_code=404, detail="Sampler not found")
|
||||
raise HTTPException(status_code=400, detail="Sampler not found")
|
||||
|
||||
return name
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue