Skip to content
Snippets Groups Projects
Commit ac9fdd46 authored by Andreas Traczyk's avatar Andreas Traczyk
Browse files

data_transfer: fix compilation with MSC

Change-Id: I7a5a0f1f1b97ec7681b15eaea535f400219c4cc9
parent 79cdfc15
No related branches found
No related tags found
No related merge requests found
......@@ -521,7 +521,7 @@ TransferManager::onIncomingProfile(const std::shared_ptr<dhtnet::ChannelSocket>&
auto recvDir = fileutils::get_cache_dir() / pimpl_->accountId_ / "vcard";
dhtnet::fileutils::recursive_mkdir(recvDir);
info.path = recvDir / fmt::format("{:s}_{:s}_{}", deviceId, uri, tid);
info.path = (recvDir / fmt::format("{:s}_{:s}_{}", deviceId, uri, tid)).string();
auto ifile = std::make_shared<IncomingFile>(std::move(channel), info, "profile.vcf", "", sha3Sum);
auto res = pimpl_->vcards_.emplace(idx, std::move(ifile));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment