diff options
author | Git'Fellow <12234510+solracsf@users.noreply.github.com> | 2024-09-14 11:21:17 +0200 |
---|---|---|
committer | backportbot[bot] <backportbot[bot]@users.noreply.github.com> | 2024-09-14 16:54:43 +0000 |
commit | dd42b6cdc82db513c4f8eb6603c035c5967ef64e (patch) | |
tree | e2789c48ec9d3cd04950cac069cd1f14b4eacb03 | |
parent | 0b65a3e762a4b804512871fa653ef2efe3996af8 (diff) | |
download | nextcloud-server-dd42b6cdc82db513c4f8eb6603c035c5967ef64e.tar.gz nextcloud-server-dd42b6cdc82db513c4f8eb6603c035c5967ef64e.zip |
fix(files_external): Check key exists before accessing it
Signed-off-by: Git'Fellow <12234510+solracsf@users.noreply.github.com>
-rw-r--r-- | apps/files_external/lib/Lib/Storage/SFTP.php | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/apps/files_external/lib/Lib/Storage/SFTP.php b/apps/files_external/lib/Lib/Storage/SFTP.php index a25829d6baf..ac568702a93 100644 --- a/apps/files_external/lib/Lib/Storage/SFTP.php +++ b/apps/files_external/lib/Lib/Storage/SFTP.php @@ -471,10 +471,14 @@ class SFTP extends Common { try { $stat = $this->getConnection()->stat($this->absPath($path)); - $mtime = $stat ? (int)$stat['mtime'] : -1; - $size = $stat ? (int)$stat['size'] : 0; - - return ['mtime' => $mtime, 'size' => $size, 'ctime' => -1]; + $mtime = isset($stat['mtime']) ? (int)$stat['mtime'] : -1; + $size = isset($stat['size']) ? (int)$stat['size'] : 0; + + return [ + 'mtime' => $mtime, + 'size' => $size, + 'ctime' => -1 + ]; } catch (\Exception $e) { return false; } |