diff options
Diffstat (limited to 'searx/utils.py')
-rw-r--r-- | searx/utils.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/searx/utils.py b/searx/utils.py index b0794c244..259a14df3 100644 --- a/searx/utils.py +++ b/searx/utils.py @@ -48,6 +48,7 @@ _STORAGE_UNIT_VALUE: Dict[str, int] = { 'GB': 1024 * 1024 * 1024, 'MB': 1024 * 1024, 'TiB': 1000 * 1000 * 1000 * 1000, + 'GiB': 1000 * 1000 * 1000, 'MiB': 1000 * 1000, 'KiB': 1000, } |