Use more filesystem::path where applicable

This commit is contained in:
Alexander Bock
2024-04-06 19:50:39 +02:00
parent 2af06fb641
commit 4328476d26
148 changed files with 712 additions and 705 deletions

View File

@@ -401,7 +401,7 @@ HttpSynchronization::trySyncFromUrl(std::string url) {
const std::string dest =
_unzipFilesDestination.has_value() ?
(originalName.parent_path() / *_unzipFilesDestination).string() :
originalName.replace_extension().string();;
originalName.replace_extension().string();
struct zip_t* z = zip_open(source.c_str(), 0, 'r');
const bool is64 = zip_is64(z);