Browse Source

Change title bar to only show unread notifications (#11572)

pull/4/head
Eugen Rochko 4 years ago
committed by GitHub
parent
commit
cdc474628d
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 2 deletions
  1. +0
    -2
      app/javascript/mastodon/reducers/missed_updates.js

+ 0
- 2
app/javascript/mastodon/reducers/missed_updates.js View File

@ -1,6 +1,5 @@
import { Map as ImmutableMap } from 'immutable';
import { NOTIFICATIONS_UPDATE } from 'mastodon/actions/notifications';
import { TIMELINE_UPDATE } from 'mastodon/actions/timelines';
import { APP_FOCUS, APP_UNFOCUS } from 'mastodon/actions/app';
const initialState = ImmutableMap({
@ -15,7 +14,6 @@ export default function missed_updates(state = initialState, action) {
case APP_UNFOCUS:
return state.set('focused', false);
case NOTIFICATIONS_UPDATE:
case TIMELINE_UPDATE:
return state.get('focused') ? state : state.update('unread', x => x + 1);
default:
return state;

Loading…
Cancel
Save