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))