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
理由: 目前支持 webdav 流行的网盘都是只要一个 mtime,所以 webdav 应该解析 mtime,但是 ctime 并没有被广泛使用,webdav 客户端也很少传这个字段,而代码里 server/webdav/util.getCreateTime 解析 ctime 会默认成 now,这会造成 mtime < ctime(文件在创建之前被修改),与概念不符合,建议 ctime 默认值是 mtime, 保证 mtime >= ctime
mtime < ctime
mtime >= ctime
No response
The text was updated successfully, but these errors were encountered:
479fc6d
No branches or pull requests
Please make sure of the following things
Description of the feature / 需求描述
理由:
目前支持 webdav 流行的网盘都是只要一个 mtime,所以 webdav 应该解析 mtime,但是 ctime 并没有被广泛使用,webdav 客户端也很少传这个字段,而代码里 server/webdav/util.getCreateTime 解析 ctime 会默认成 now,这会造成
mtime < ctime
(文件在创建之前被修改),与概念不符合,建议 ctime 默认值是 mtime, 保证mtime >= ctime
Suggested solution / 实现思路
No response
Additional context / 附件
No response
The text was updated successfully, but these errors were encountered: