fix: fixed the wallpaper request for individual dates
Some checks failed
Create and publish a Docker image / build-and-push-image (push) Failing after 32s

This commit is contained in:
Данил 2025-03-28 12:11:06 +03:00
parent 923cd87a73
commit f1d731e505

View file

@ -65,7 +65,7 @@ async def wallpaper(request: Request, day):
Returns:
HTMLResponse: The wallpaper page or 404 error page.
"""
res = requests.get('https://api.starlio.space/wallpaper/{day}', timeout=3)
res = requests.get(f'https://api.starlio.space/wallpaper/{day}', timeout=3)
if (HTTPStatus(res.status_code).is_server_error
or HTTPStatus(res.status_code).is_client_error