Fix notification count

This commit is contained in:
r 2020-01-15 06:01:36 +00:00
parent 55987a4c1b
commit 5fdc7a59b2
1 changed files with 1 additions and 1 deletions

View File

@ -450,7 +450,7 @@ func (svc *service) ServeNotificationPage(ctx context.Context, client io.Writer,
notifications[i].Status.HideAccountInfo = true notifications[i].Status.HideAccountInfo = true
} }
} }
if notifications[i].Pleroma != nil && notifications[i].Pleroma.IsSeen { if notifications[i].Pleroma != nil && !notifications[i].Pleroma.IsSeen {
unreadCount++ unreadCount++
} }
} }