Skip to content
Snippets Groups Projects
Commit dc35a8af authored by Michael Zamot's avatar Michael Zamot
Browse files

Convert timestamp key value of metadata in Swift files_external


	modified:   apps/files_external/lib/Lib/Storage/Swift.php

Signed-off-by: default avatarMichael Zamot <michael@zamot.io>

Convert value of timestamp metadata key in swift files_external to string
parent fb48abc3
No related branches found
No related tags found
No related merge requests found
...@@ -451,7 +451,7 @@ class Swift extends \OC\Files\Storage\Common { ...@@ -451,7 +451,7 @@ class Swift extends \OC\Files\Storage\Common {
if (is_null($mtime)) { if (is_null($mtime)) {
$mtime = time(); $mtime = time();
} }
$metadata = ['timestamp' => $mtime]; $metadata = ['timestamp' => (string)$mtime];
if ($this->file_exists($path)) { if ($this->file_exists($path)) {
if ($this->is_dir($path) && $path !== '.') { if ($this->is_dir($path) && $path !== '.') {
$path .= '/'; $path .= '/';
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment