mirror of
https://github.com/friendica/friendica
synced 2024-11-10 05:42:54 +00:00
Merge pull request #11197 from annando/issue-11156
Issue 11156: Display "49+" notifications if there are 50 or more
This commit is contained in:
commit
52f5e94bdb
1 changed files with 3 additions and 1 deletions
|
@ -350,9 +350,11 @@ function ping_init(App $a)
|
|||
}
|
||||
|
||||
if ($format == 'json') {
|
||||
$notification_count = $sysnotify_count + $intro_count + $register_count;
|
||||
|
||||
$data['groups'] = $groups_unseen;
|
||||
$data['forums'] = $forums_unseen;
|
||||
$data['notification'] = $sysnotify_count + $intro_count + $register_count;
|
||||
$data['notification'] = ($notification_count < 50) ? $notification_count : '49+';
|
||||
$data['notifications'] = $notifications;
|
||||
$data['sysmsgs'] = [
|
||||
'notice' => $sysmsgs,
|
||||
|
|
Loading…
Reference in a new issue