Merge pull request #35049 from nextcloud/backport/34834/stable24

[stable24] Fix size calculation on copying the skeleton files
This commit is contained in:
Julius Härtl 2022-11-10 21:31:00 +01:00 committed by GitHub
commit af87f280d0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -254,7 +254,7 @@ class OC_Util {
closedir($dir);
return;
}
stream_copy_to_stream($sourceStream, $child->fopen('w'));
$child->putContent($sourceStream);
}
}
}