mirror of
https://github.com/rommapp/romm.git
synced 2026-06-27 14:25:52 +00:00
Make HEAD endpoint consistent with GET: return 404 when files list is empty
Co-authored-by: gantoine <3247106+gantoine@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
27d20088fe
commit
a8581e488b
@@ -868,6 +868,12 @@ async def head_rom_content(
|
||||
files = [f for f in files if f.id in file_id_values]
|
||||
files.sort(key=lambda x: x.file_name)
|
||||
|
||||
if not files:
|
||||
raise HTTPException(
|
||||
status_code=status.HTTP_404_NOT_FOUND,
|
||||
detail=f"No files found for ROM {id}",
|
||||
)
|
||||
|
||||
# Serve the file directly in development mode for emulatorjs
|
||||
if DEV_MODE:
|
||||
if len(files) == 1:
|
||||
|
||||
Reference in New Issue
Block a user