-
Notifications
You must be signed in to change notification settings - Fork 118
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
关于下载地址为种子时,迅雷:handle_torrent_download,err:[Errno 2] No such file or directory的错误 #529
Comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
#511 #512 也有提到
顺带参照对比没有问题的0.3版本
日志报错 handle_torrent_download,然后Debug了一下。实际上大概是xunlei_download_provider在种子转磁力时候文件路径的问题
handle_torrent_download的for循环里面,
send_torrent_task(self, task: Task)过去,到迅雷provider时,将种子文件转换成磁链,convert_torrent_to_magnet(task.path),结果用的是taks.path,也就是传参传了个 不存在的实际文件位置(也许是好qb分类和修改文件名?我没研究qb那部分,瞎猜的,毕竟实际下载的种子文件是编码的.torrent)
torrent_file_path应该获得Task.url才对,Task.url才是种子的实际存在目录 /tmp/xxxxxx.torrent
修改为task.url后
能正常torrent文件传递,btbtt12也正常解析...不知道有没有其他问题。我也没用其他的。就没pull,docker也只放在了我的hub上。
The text was updated successfully, but these errors were encountered: