mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-12 17:44:31 +00:00
Update StoryService, fix division by zero bug
This commit is contained in:
parent
97ca139c76
commit
6ae1ba0a64
1 changed files with 2 additions and 2 deletions
|
@ -121,9 +121,9 @@ class StoryService
|
||||||
'sum' => (int) Story::sum('size'),
|
'sum' => (int) Story::sum('size'),
|
||||||
'average' => (int) Story::avg('size')
|
'average' => (int) Story::avg('size')
|
||||||
],
|
],
|
||||||
'avg_spu' => (int) ($total / Story::groupBy('profile_id')->pluck('profile_id')->count()),
|
'avg_spu' => $total ? (int) ($total / Story::groupBy('profile_id')->pluck('profile_id')->count()) : 'N/A',
|
||||||
'avg_duration' => (int) floor(Story::avg('duration')),
|
'avg_duration' => (int) floor(Story::avg('duration')),
|
||||||
'avg_type' => Story::selectRaw('type, count(id) as count')->groupBy('type')->orderByDesc('count')->first()->type
|
'avg_type' => $total ? Story::selectRaw('type, count(id) as count')->groupBy('type')->orderByDesc('count')->first()->type : 'N/A'
|
||||||
];
|
];
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue