HKUDS/DeepTutor · error · HTTPException
Avatar image is too large (max 1 MB).
Error message
Avatar image is too large (max 1 MB).
What it means
Error "Avatar image is too large (max 1 MB)." thrown in HKUDS/DeepTutor.
Source
Thrown at deeptutor/api/routers/auth.py:677
"""
current = _require_profile_identity(payload)
if POCKETBASE_ENABLED:
raise HTTPException(
status_code=status.HTTP_400_BAD_REQUEST,
detail="Avatar upload is not available in PocketBase mode.",
)
if not current.user_id or not _USER_ID_RE.match(current.user_id):
raise HTTPException(
status_code=status.HTTP_400_BAD_REQUEST,
detail="Cannot store an avatar for this account.",
)
info = get_user_info(current.username)
if info is None:
raise HTTPException(status_code=status.HTTP_404_NOT_FOUND, detail="User not found")
data = await file.read(_AVATAR_MAX_BYTES + 1)
if len(data) > _AVATAR_MAX_BYTES:
raise HTTPException(
status_code=status.HTTP_413_REQUEST_ENTITY_TOO_LARGE,
detail="Avatar image is too large (max 1 MB).",
)
ext = _sniff_image(data)
if ext is None:
raise HTTPException(
status_code=status.HTTP_415_UNSUPPORTED_MEDIA_TYPE,
detail="Avatar must be a PNG, JPEG or WebP image.",
)
from deeptutor.multi_user.identity import save_avatar_file
# Bump the version embedded in the marker so clients cache-bust the URL.
previous = str(info.get("avatar") or "")
version = 1
if previous.startswith("img:"):
try:
version = int(previous.split(":", 1)[1]) + 1View on GitHub (pinned to 3e82f13042)
When it happens
Trigger: Thrown at deeptutor/api/routers/auth.py:677 when the library encounters an invalid state.
Common situations: See trigger scenarios.
AI-assisted analysis of HKUDS/DeepTutor@3e82f13042 (2026-08-27).
Data as JSON: /api/errors/57b57154549f3ce1.
Report an issue: GitHub.