Skip to content

Commit

Permalink
🐞 fix(APP): 修复GithubDownloader中镜像站链接输出错误的问题
Browse files Browse the repository at this point in the history
  • Loading branch information
HeartfeltJoy committed Oct 9, 2024
1 parent 72148e0 commit 8bb97b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Core/NetworkFunc/Downloader.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def run(self) -> None:
logger.info(f"{'-' * 10} 尝试使用镜像站下载 {self.filename} ~ {'-' * 10}")
for mirror_url in self.mirror_urls:
self.url = QUrl(mirror_url)
logger.info(f"当前下载链接 {self.url}")
logger.info(f"当前下载链接 {self.url.url()}")
if self.download():
return

Expand Down

0 comments on commit 8bb97b7

Please sign in to comment.