Feature/torrent removal (#630)

* Remove torrent-based synchronization downloads
 * Add download URL to error message if HTTPSynchronization download fails
 * Add a grace factor to the distance conversion
 * Don't use scientific notation when displaying distances
This commit is contained in:
Alexander Bock
2018-06-23 22:20:03 -04:00
committed by GitHub
parent 48b8ac7413
commit 0f5fd2c4bc
86 changed files with 1186 additions and 1231 deletions

View File

@@ -274,11 +274,14 @@ bool HttpSynchronization::trySyncFromUrl(std::string listUrl) {
"HTTPSynchronization",
fmt::format("Error renaming file {} to {}", tempName, originalName)
);
failed = true;
}
}
else {
LERRORC(
"HTTPSynchronization",
fmt::format("Error downloading file from URL {}", d->url())
);
failed = true;
}
}