Merge pull request #250 from bigfa/fixed-trace-id

fix:兼容网页端上传的图片原图获取
This commit is contained in:
程序员阿江-Relakkes 2024-04-25 22:18:40 +08:00 committed by GitHub
commit abb82076eb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 1 deletions

View File

@ -273,7 +273,8 @@ def get_img_urls_by_trace_id(trace_id: str, format_type: str = "png"):
def get_trace_id(img_url: str):
return img_url.split("/")[-1]
# 浏览器端上传的图片多了 /spectrum/ 这个路径
return f"spectrum/{img_url.split("/")[-1]}" if img_url.find("spectrum") != -1 else img_url.split("/")[-1]
if __name__ == '__main__':