We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
目前只试过漫画,有这个问题,不知道直播和视频标题有/会不会也下载不了 比如说这个: https://manga.bilibili.com/detail/mc25632
The text was updated successfully, but these errors were encountered:
@Telloyee 感谢反馈。 斜杠的问题在开发最初的时候就考虑了:标题中的 \/:*?"<>| 会相应地替换为全角字符。
\/:*?"<>|
这里的问题其实是合成标题的时候末尾有空格,然后创建了一个末尾有空格的文件夹,之后在这个文件夹里创建文件失败(小提一句,这个在 Linux 平台上是没问题的)。
Release 已更新,请先删除该漫画下载任务以及文件夹(这文件夹好像不太好删?),然后才能在更新的版本下载该漫画
解决方法:在创建下载任务时移去标题开头和末尾的空格。
相关文件:utils.cpp
utils.cpp
QString Utils::legalizedFileName(QString title) { - return title.replace('\\', u'\').replace('/', u'/').replace(':', u':') + return title.simplified() + .replace('\\', u'\').replace('/', u'/').replace(':', u':') .replace('*', u'*').replace('?', u'?').replace('"', u'“') .replace('<', u'<').replace('>', u'>').replace('|', u'|'); }
Sorry, something went wrong.
No branches or pull requests
目前只试过漫画,有这个问题,不知道直播和视频标题有/会不会也下载不了
比如说这个:
https://manga.bilibili.com/detail/mc25632
The text was updated successfully, but these errors were encountered: