summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorLouis Chemineau <louis@chmn.me>2024-02-28 16:06:16 +0100
committerbackportbot[bot] <backportbot[bot]@users.noreply.github.com>2024-03-01 09:18:43 +0000
commitda86eaf0bc4fddc8acd7574803e1c7bdb583b41e (patch)
treeea572a99ca0a030dc75efe935082de432749f9ce /apps
parent2b35ed7c82c9269a6392b57b45872d27643cba03 (diff)
downloadnextcloud-server-da86eaf0bc4fddc8acd7574803e1c7bdb583b41e.tar.gz
nextcloud-server-da86eaf0bc4fddc8acd7574803e1c7bdb583b41e.zip
fix(files_versions): Do not create a new version for empty files
Signed-off-by: Louis Chemineau <louis@chmn.me>
Diffstat (limited to 'apps')
-rw-r--r--apps/files_versions/lib/Listener/FileEventsListener.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/apps/files_versions/lib/Listener/FileEventsListener.php b/apps/files_versions/lib/Listener/FileEventsListener.php
index 206c75ec6ec..f199d47b981 100644
--- a/apps/files_versions/lib/Listener/FileEventsListener.php
+++ b/apps/files_versions/lib/Listener/FileEventsListener.php
@@ -218,11 +218,12 @@ class FileEventsListener implements IEventListener {
}
if (
- ($writeHookInfo['versionCreated'] || $writeHookInfo['previousNode']->getSize() === 0) &&
+ $writeHookInfo['versionCreated'] &&
$node->getMTime() !== $writeHookInfo['previousNode']->getMTime()
) {
// If a new version was created, insert a version in the DB for the current content.
- // Unless both versions have the same mtime.
+ // If both versions have the same mtime, it means the latest version file simply got overrode,
+ // so no need to create a new version.
$this->created($node);
} else {
try {