From ccc69d92df3b2610e2d55a19e711b360d25e9444 Mon Sep 17 00:00:00 2001 From: Daniel Bedeleanu Date: Sat, 11 Apr 2026 14:27:15 +0300 Subject: [PATCH] fix: translate final Romanian comment in items.py to English --- backend/routers/items.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/routers/items.py b/backend/routers/items.py index 594adf52..a329479d 100644 --- a/backend/routers/items.py +++ b/backend/routers/items.py @@ -69,7 +69,7 @@ async def extract_label( """[C-01] Extract label from image — only for authenticated users. [H-02] Rate limit: 10 req/min per IP.""" from ..ai_vision import extract_label_info - # [SECURITY FIX H-03] Validare tip MIME și dimensiune maximă + # [SECURITY FIX H-03] Validate MIME type and maximum size if file.content_type not in _ALLOWED_IMAGE_TYPES: raise HTTPException( status_code=status.HTTP_415_UNSUPPORTED_MEDIA_TYPE,