1
0
mirror of https://github.com/gilbertchen/duplicacy synced 2025-12-06 00:03:38 +00:00

Compare commits

...

3 Commits

Author SHA1 Message Date
Gilbert Chen
54c4ebaa99 Revert last commit which was checked in to the wrong branch
This reverts commit 3255d8168a.
2019-02-26 13:55:20 -05:00
Gilbert Chen
3255d8168a Fixed a webdav compatibility issue with rclone and other bugs 2019-02-26 13:38:25 -05:00
Gilbert Chen
08e85c49ff When prefetching chunks don't stop on a chunk that may not be needed 2019-02-15 13:56:18 -05:00

View File

@@ -220,7 +220,7 @@ func (downloader *ChunkDownloader) WaitForChunk(chunkIndex int) (chunk *Chunk) {
}
task := &downloader.taskList[i]
if !task.needed {
break
continue
}
if !task.isDownloading {