From 4470b68de951316d3821c9bb63f73a71ea4de796 Mon Sep 17 00:00:00 2001 From: Eric Date: Fri, 29 Mar 2024 11:14:36 +0800 Subject: [PATCH] =?UTF-8?q?perf:=20=E4=BC=98=E5=8C=96=E4=BB=A3=E7=A0=81?= =?UTF-8?q?=EF=BC=8C=E9=81=BF=E5=85=8D=E5=BD=95=E5=83=8F=E4=B8=8B=E8=BD=BD?= =?UTF-8?q?=E5=BC=82=E5=B8=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/common/storage/replay.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/common/storage/replay.py b/apps/common/storage/replay.py index 3d84a234b..63b58c6cd 100644 --- a/apps/common/storage/replay.py +++ b/apps/common/storage/replay.py @@ -12,7 +12,7 @@ class ReplayStorageHandler(BaseStorageHandler): # 获取外部存储路径名 session_path = self.obj.find_ok_relative_path_in_storage(storage) if not session_path: - return None + return None, None # 通过外部存储路径名后缀,构造真实的本地存储路径 return session_path, self.obj.get_local_path_by_relative_path(session_path)