Browse Source

Merge pull request #34834 from nextcloud/bugfix/noid/skeleton-size-calc

Fix size calculation on copying the skeleton files
pull/33597/head
Vincent Petry 3 years ago
committed by GitHub
parent
commit
966ee67efb
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      lib/private/legacy/OC_Util.php

2
lib/private/legacy/OC_Util.php

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

Loading…
Cancel
Save