Skip to content

Commit

Permalink
Fixes createFolderRecursive() buildPath
Browse files Browse the repository at this point in the history
  • Loading branch information
adiwit-co-th authored Aug 31, 2022
1 parent 47d8d52 commit af47c27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Drive/FolderService.php
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ public function createFolderRecursive(?string $folder = null): ?array
$parentFolderId = null;
$createFolderResponse = null;
foreach($pathParts as $path) {
$buildPath = $path;
$buildPath = sprintf('%s/%s', $buildPath, $path);
$folderMeta = $this->requestFolderMetadata($buildPath);

if($folderMeta !== null) {
Expand Down

0 comments on commit af47c27

Please sign in to comment.