diff options
author | Max Kunzelmann <maxdev@posteo.de> | 2022-03-20 11:07:36 +0100 |
---|---|---|
committer | Max Kunzelmann <maxdev@posteo.de> | 2022-03-20 11:07:36 +0100 |
commit | e0a5fe649a73edc3769af1b9af1d2938fd327cc2 (patch) | |
tree | b2293da2c9981771e21318b5398865bc698cf7a9 | |
parent | ee888875bb01031c6f21e48832313641ee6d726e (diff) | |
download | nextcloud-server-e0a5fe649a73edc3769af1b9af1d2938fd327cc2.tar.gz nextcloud-server-e0a5fe649a73edc3769af1b9af1d2938fd327cc2.zip |
Fix typo.
Signed-off-by: Max Kunzelmann <maxdev@posteo.de>
-rw-r--r-- | lib/private/Files/Storage/DAV.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/Files/Storage/DAV.php b/lib/private/Files/Storage/DAV.php index e4cea9dd60b..bd818bf33a2 100644 --- a/lib/private/Files/Storage/DAV.php +++ b/lib/private/Files/Storage/DAV.php @@ -587,7 +587,7 @@ class DAV extends Common { return false; } return [ - 'mtime' => isset($response['{DAV:getlastmodified']) ? strtotime($response['{DAV:}getlastmodified']) : false, + 'mtime' => isset($response['{DAV:}getlastmodified']) ? strtotime($response['{DAV:}getlastmodified']) : false, 'size' => (int)isset($response['{DAV:}getcontentlength']) ? $response['{DAV:}getcontentlength'] : 0, ]; } catch (\Exception $e) { |