Skip to content

Commit abbf18d

Browse files
chore(Node: add note about mismatched mtime cache
Signed-off-by: Josh <josh.t.richards@gmail.com>
1 parent 43edc99 commit abbf18d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/private/Files/Node/Node.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ public function touch($mtime = null) {
148148
if (is_null($mtime)) {
149149
$mtime = time();
150150
}
151-
$this->fileInfo['mtime'] = $mtime;
151+
$this->fileInfo['mtime'] = $mtime; // XXX This isn't normalized like it is at the View::touch() level
152152
}
153153
} else {
154154
throw new NotPermittedException();

0 commit comments

Comments
 (0)