From 5d251b629242ace9185607e60e53a33b29b6164d Mon Sep 17 00:00:00 2001 From: p23 Date: Wed, 11 Jun 2025 01:47:00 +0800 Subject: [PATCH] pre-deploy --- interface/tcivs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interface/tcivs.py b/interface/tcivs.py index a41bffd..a862607 100644 --- a/interface/tcivs.py +++ b/interface/tcivs.py @@ -38,7 +38,7 @@ def get(index:int, media:bool=True) -> dict | None: # get media if media and rj["enclosure"] is not None: for m in rj["enclosure"]: - _m = requests.get(f"{HOST}/{m}") + _m = requests.get(f"{HOST}/static/{m}") if _m.status_code == 200: media_arr.append(io.BytesIO(_m.content))