大文件上传,进度提示错误!

上传较大文件时,上传进度显示不正确。。。

谢谢报告,我们有时间了会调查下这个问题。

When the size of uploading file is larger than 2G,the progress bar do not work by baixiangcpp · Pull Request #828 · haiwen/seafile-client · GitHub 是这个问题不?

另外,我最近用seafile的时候发现下载大文件的时候会crash。

“this application has requested runtime to terminate it in an unusual way ”

我查下来好像挂在readAll()这里了

`void GetFileTask::httpReadyRead()
{
if (canceled_) {
return;
}
// TODO: read in blocks (e.g 64k) instead of readAll
// TODO: check http status code
QByteArray chunk = reply_->readAll();
if (!chunk.isEmpty()) {
if (tmp_file_->write(chunk) <= 0) {
setError(FileNetworkTask::FileIOError, tr(“Failed to create folders”));
emit finished(false);
}
}
}
但是不知道是什么原因,而且在我的电脑上是必现的。