[Scummvm-git-logs] scummvm master -> 1dd55b88bdc641f3aebf1e25709f228e37fe7eec

lephilousophe noreply at scummvm.org
Wed Jul 16 06:29:31 UTC 2025


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://api.github.com/repos/scummvm/scummvm .

Summary:
1dd55b88bd CLOUD: Fix missing separator in local path for folder download


Commit: 1dd55b88bdc641f3aebf1e25709f228e37fe7eec
    https://github.com/scummvm/scummvm/commit/1dd55b88bdc641f3aebf1e25709f228e37fe7eec
Author: Thierry Crozat (criezy at scummvm.org)
Date: 2025-07-16T08:29:27+02:00

Commit Message:
CLOUD: Fix missing separator in local path for folder download

Changed paths:
    backends/cloud/folderdownloadrequest.cpp


diff --git a/backends/cloud/folderdownloadrequest.cpp b/backends/cloud/folderdownloadrequest.cpp
index af790f76541..1cf034508e4 100644
--- a/backends/cloud/folderdownloadrequest.cpp
+++ b/backends/cloud/folderdownloadrequest.cpp
@@ -138,7 +138,7 @@ void FolderDownloadRequest::downloadNextFile() {
 	}
 	Common::Path localPath(localPathStr);
 	if (!_localDirectoryPath.empty()) {
-		localPath = _localDirectoryPath.append(localPath);
+		localPath = _localDirectoryPath.join(localPath);
 	}
 	debug(9, "FolderDownloadRequest: %s -> %s", remotePath.c_str(), localPath.toString(Common::Path::kNativeSeparator).c_str());
 	_workingRequest = _storage->downloadById(




More information about the Scummvm-git-logs mailing list