diff --git a/modules/stato_servizi/src/SpaceHook.php b/modules/stato_servizi/src/SpaceHook.php index b4c75455b..5eec736b3 100644 --- a/modules/stato_servizi/src/SpaceHook.php +++ b/modules/stato_servizi/src/SpaceHook.php @@ -43,13 +43,14 @@ class SpaceHook extends CachedManager $osm_size = $this->getCache()->content; $soft_quota = (float) setting('Soft quota'); // Impostazione in GB - $space_limit = ($soft_quota / 100) * 95; // 95% dello spazio indicato - $space_limit = $space_limit * (1024 ** 3); // Trasformazione in GB + $soft_quota = $soft_quota * (1024 ** 3); // Trasformazione in GB $message = tr('Attenzione: occupati _TOT_ dei _QUOTA_ previsti', [ '_TOT_' => FileSystem::formatBytes($osm_size), - '_QUOTA_' => FileSystem::formatBytes($space_limit), + '_QUOTA_' => FileSystem::formatBytes($soft_quota), ]); + + $space_limit = ($soft_quota / 100) * 95; // 95% dello spazio indicato return [ 'icon' => 'fa fa-database text-warning',