]> source.dussan.org Git - nextcloud-server.git/commitdiff
Revert "[stable24] Fix quota type to int"
authorVincent Petry <vincent@nextcloud.com>
Tue, 22 Nov 2022 14:39:00 +0000 (15:39 +0100)
committerVincent Petry <vincent@nextcloud.com>
Thu, 24 Nov 2022 20:09:28 +0000 (21:09 +0100)
Signed-off-by: Vincent Petry <vincent@nextcloud.com>
lib/private/legacy/OC_Helper.php
lib/private/legacy/OC_Util.php

index ba9ac13b21686e5d049b7c77d751e7d7ef250a5c..269922f21dd6c29150b12249f4246f28069e4e16 100644 (file)
@@ -95,7 +95,7 @@ class OC_Helper {
        /**
         * Make a computer file size
         * @param string $str file size in human readable format
-        * @return int|false a file size in bytes
+        * @return float|bool a file size in bytes
         *
         * Makes 2kB to 2048.
         *
@@ -104,7 +104,7 @@ class OC_Helper {
        public static function computerFileSize($str) {
                $str = strtolower($str);
                if (is_numeric($str)) {
-                       return (int)$str;
+                       return (float)$str;
                }
 
                $bytes_array = [
@@ -131,7 +131,7 @@ class OC_Helper {
 
                $bytes = round($bytes);
 
-               return (int)$bytes;
+               return $bytes;
        }
 
        /**
index 3a3b634e5228ad4834cfececd798ea00b51ffcdb..84416c21337438a78e3b06272308b414fc459af1 100644 (file)
@@ -158,7 +158,7 @@ class OC_Util {
         * Get the quota of a user
         *
         * @param IUser|null $user
-        * @return int|\OCP\Files\FileInfo::SPACE_UNLIMITED|false Quota bytes
+        * @return float Quota bytes
         */
        public static function getUserQuota(?IUser $user) {
                if (is_null($user)) {