Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix: Create empty file instead of file with a space
Signed-off-by: Julius Knorr <[email protected]>
  • Loading branch information
juliusknorr authored and backportbot[bot] committed Dec 20, 2024
commit afb4224b6758f641ecd890d3fa89b03b4e20a1d0
2 changes: 1 addition & 1 deletion apps/files/js/filelist.js
Original file line number Diff line number Diff line change
Expand Up @@ -3034,7 +3034,7 @@

self.filesClient.putFileContents(
targetPath,
' ', // dont create empty files which fails on some storage backends
'',
{
contentType: 'text/plain',
overwrite: true
Expand Down
Loading