handle storage exceptions when trying to set mtime
not all storage backends can handle setting the mtime and they might not always handle that error correctly. Signed-off-by: Robin Appelman <robin@icewind.nl>
This commit is contained in:
parent
948770205a
commit
42930f6fab
|
@ -566,7 +566,12 @@ class View {
|
|||
$hooks[] = 'create';
|
||||
$hooks[] = 'write';
|
||||
}
|
||||
$result = $this->basicOperation('touch', $path, $hooks, $mtime);
|
||||
try {
|
||||
$result = $this->basicOperation('touch', $path, $hooks, $mtime);
|
||||
} catch (\Exception $e) {
|
||||
$this->logger->logException($e, ['level' => ILogger::INFO, 'message' => 'Error while setting modified time']);
|
||||
$result = false;
|
||||
}
|
||||
if (!$result) {
|
||||
// If create file fails because of permissions on external storage like SMB folders,
|
||||
// check file exists and return false if not.
|
||||
|
|
Loading…
Reference in New Issue