diff options
Diffstat (limited to 'plugins/CloudFile/src/Services/microsoft_service.cpp')
-rw-r--r-- | plugins/CloudFile/src/Services/microsoft_service.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/CloudFile/src/Services/microsoft_service.cpp b/plugins/CloudFile/src/Services/microsoft_service.cpp index 92a50cbc80..db8acf7cc6 100644 --- a/plugins/CloudFile/src/Services/microsoft_service.cpp +++ b/plugins/CloudFile/src/Services/microsoft_service.cpp @@ -211,7 +211,8 @@ auto COneDriveService::CreateSharedLink(const std::string &itemId) void COneDriveService::Upload(FileTransferParam *ftp) { std::string folderId; - std::string serverFolder = T2Utf(ftp->GetServerDirectory()); + auto serverDictionary = ftp->GetServerDirectory(); + std::string serverFolder = serverDictionary ? T2Utf(serverDictionary) : ""; if (!serverFolder.empty()) { auto path = PreparePath(serverFolder); folderId = CreateFolder(path); |