mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-09 16:24:51 +00:00
Update AvatarStorage, improve overview calculations
This commit is contained in:
parent
d52ee26dd7
commit
733b9fd000
1 changed files with 4 additions and 4 deletions
|
@ -51,8 +51,8 @@ class AvatarStorage extends Command
|
|||
],
|
||||
[
|
||||
'Remote',
|
||||
Avatar::whereNotNull('is_remote')->count(),
|
||||
PrettyNumber::size(Avatar::whereNotNull('is_remote')->sum('size'))
|
||||
Avatar::whereIsRemote(true)->count(),
|
||||
PrettyNumber::size(Avatar::whereIsRemote(true)->sum('size'))
|
||||
],
|
||||
[
|
||||
'Cached (CDN)',
|
||||
|
@ -61,8 +61,8 @@ class AvatarStorage extends Command
|
|||
],
|
||||
[
|
||||
'Uncached',
|
||||
Avatar::whereNull('is_remote')->whereNull('cdn_url')->count(),
|
||||
PrettyNumber::size(Avatar::whereNull('is_remote')->whereNull('cdn_url')->sum('size'))
|
||||
Avatar::whereNull('cdn_url')->count(),
|
||||
PrettyNumber::size(Avatar::whereNull('cdn_url')->sum('size'))
|
||||
],
|
||||
[
|
||||
'------------',
|
||||
|
|
Loading…
Reference in a new issue