Merge pull request #12857 from nextcloud/fix/emit_write_update_once_on_touch

Emit write update only once on touch
This commit is contained in:
Morris Jobke
2018-12-05 22:54:47 +01:00
committed by GitHub
+1 -1
View File
@@ -1157,7 +1157,7 @@ class View {
if ($result && in_array('delete', $hooks) and $result) {
$this->removeUpdate($storage, $internalPath);
}
if ($result && in_array('write', $hooks) and $operation !== 'fopen') {
if ($result && in_array('write', $hooks, true) && $operation !== 'fopen' && $operation !== 'touch') {
$this->writeUpdate($storage, $internalPath);
}
if ($result && in_array('touch', $hooks)) {