Merge pull request #793 from matrix-org/matthew/one-push-badge-per-convo

increment badge count per missed convo, not per msg
pull/794/head
Matthew Hodgson 2016-05-18 13:56:38 +01:00
commit 6fb51eaf7b
1 changed files with 3 additions and 1 deletions

View File

@ -38,7 +38,9 @@ def get_badge_count(store, user_id):
r.room_id, user_id, last_unread_event_id
)
)
badge += notifs["notify_count"]
# return one badge count per conversation, as count per
# message is so noisy as to be almost useless
badge += 1 if notifs["notify_count"] else 0
defer.returnValue(badge)