Fix typo.

Signed-off-by: Max Kunzelmann <maxdev@posteo.de>
This commit is contained in:
Max Kunzelmann 2022-03-20 11:07:36 +01:00
parent ee888875bb
commit e0a5fe649a

View file

@ -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) {