mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
cast storage_mtime to int
This commit is contained in:
parent
f91a4c89ca
commit
f619f59f1c
1 changed files with 1 additions and 0 deletions
1
lib/private/files/cache/cache.php
vendored
1
lib/private/files/cache/cache.php
vendored
|
|
@ -140,6 +140,7 @@ class Cache {
|
|||
$data['fileid'] = (int)$data['fileid'];
|
||||
$data['size'] = (int)$data['size'];
|
||||
$data['mtime'] = (int)$data['mtime'];
|
||||
$data['storage_mtime'] = (int)$data['storage_mtime'];
|
||||
$data['encrypted'] = (bool)$data['encrypted'];
|
||||
$data['unencrypted_size'] = (int)$data['unencrypted_size'];
|
||||
$data['storage'] = $this->storageId;
|
||||
|
|
|
|||
Loading…
Reference in a new issue