Correzione messaggio su spazio occupato

This commit is contained in:
Dasc3er 2021-03-15 10:08:11 +01:00
parent be91e1040a
commit 6deca4bd9b
1 changed files with 4 additions and 3 deletions

View File

@ -43,14 +43,15 @@ class SpaceHook extends CachedManager
$osm_size = $this->getCache()->content; $osm_size = $this->getCache()->content;
$soft_quota = (float) setting('Soft quota'); // Impostazione in GB $soft_quota = (float) setting('Soft quota'); // Impostazione in GB
$space_limit = ($soft_quota / 100) * 95; // 95% dello spazio indicato $soft_quota = $soft_quota * (1024 ** 3); // Trasformazione in GB
$space_limit = $space_limit * (1024 ** 3); // Trasformazione in GB
$message = tr('Attenzione: occupati _TOT_ dei _QUOTA_ previsti', [ $message = tr('Attenzione: occupati _TOT_ dei _QUOTA_ previsti', [
'_TOT_' => FileSystem::formatBytes($osm_size), '_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 [ return [
'icon' => 'fa fa-database text-warning', 'icon' => 'fa fa-database text-warning',
'message' => $message, 'message' => $message,