fix: 提供给luna的录像地址不能为本地local地址,应该为url

pull/10691/head
jiangweidong 2023-06-13 11:21:48 +08:00 committed by Jiangjie.Bai
parent aee20a6c05
commit 9a29cda210
1 changed files with 1 additions and 1 deletions

View File

@ -214,7 +214,7 @@ class SessionReplayViewSet(AsyncApiMixin, viewsets.ViewSet):
local_path, url_or_err = storage.get_file_path_url()
if local_path is None:
return Response({"error": url_or_err}, status=404)
data = self.get_replay_data(session, local_path)
data = self.get_replay_data(session, url_or_err)
return Response(data)