fix(app): 修复视频作品下载功能

Closes #324
Closes #325
This commit is contained in:
Quan
2026-01-06 12:35:20 +08:00
parent f94e564598
commit aa183effe9
3 changed files with 35 additions and 5 deletions

View File

@@ -194,8 +194,14 @@ class XHS:
data, self.manager.image_format
)
def __extract_video(self, container: dict, data: Namespace):
container["下载地址"] = self.video.get_video_link(data)
def __extract_video(
self,
container: dict,
data: Namespace,
):
container["下载地址"] = self.video.get_video_link(
data,
)
container["动图地址"] = [
None,
]