From: Louis Chemineau Date: Wed, 28 Feb 2024 15:06:16 +0000 (+0100) Subject: fix(files_versions): Do not create a new version for empty files X-Git-Tag: v29.0.0beta1~70^2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=66fbb7be761d5f1bc9613eff9fa749adec3dd40b;p=nextcloud-server.git fix(files_versions): Do not create a new version for empty files Signed-off-by: Louis Chemineau --- diff --git a/apps/files_versions/lib/Listener/FileEventsListener.php b/apps/files_versions/lib/Listener/FileEventsListener.php index f5def37fc9e..84cffc2c1fd 100644 --- a/apps/files_versions/lib/Listener/FileEventsListener.php +++ b/apps/files_versions/lib/Listener/FileEventsListener.php @@ -219,11 +219,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 {