From 4bdc5834fa7d13c53c8f64b33646309062490954 Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Thu, 2 Feb 2023 11:50:29 +0100 Subject: [PATCH] Make sure name and path are strings Otherwise Oracle returns NULL for empty strings and PHP 8.2 throws on null in string functions like trim() and md5() Signed-off-by: Joas Schilling --- lib/private/Files/Cache/Cache.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/private/Files/Cache/Cache.php b/lib/private/Files/Cache/Cache.php index 380e4427e7d69..6440bf05a1dc1 100644 --- a/lib/private/Files/Cache/Cache.php +++ b/lib/private/Files/Cache/Cache.php @@ -186,6 +186,8 @@ public function get($file) { */ public static function cacheEntryFromData($data, IMimeTypeLoader $mimetypeLoader) { //fix types + $data['name'] = (string)$data['name']; + $data['path'] = (string)$data['path']; $data['fileid'] = (int)$data['fileid']; $data['parent'] = (int)$data['parent']; $data['size'] = 0 + $data['size'];