From deb1f22c23b15565d9d3c2e87dba08d789ad7fab Mon Sep 17 00:00:00 2001 From: yemkareems Date: Mon, 8 Jul 2024 16:50:49 +0530 Subject: [PATCH] fix: addOption type corrected Signed-off-by: yemkareems --- apps/files/lib/Command/ListFiles.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/files/lib/Command/ListFiles.php b/apps/files/lib/Command/ListFiles.php index 4edc930d8cf..b62e30f89a7 100644 --- a/apps/files/lib/Command/ListFiles.php +++ b/apps/files/lib/Command/ListFiles.php @@ -51,13 +51,13 @@ class ListFiles extends Base { ->addOption("type", "", InputArgument::OPTIONAL, "Filter by type like application, image, video etc") ->addOption( "minSize", - 0, + "0", InputArgument::OPTIONAL, "Filter by min size" ) ->addOption( "maxSize", - 0, + "0", InputArgument::OPTIONAL, "Filter by max size" )