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:
commit
ecc8068e66
1 changed files with 1 additions and 1 deletions
|
@ -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)) {
|
||||
|
|
Loading…
Reference in a new issue