diff options
| author | shpuld <shp@cock.li> | 2018-04-11 19:34:40 +0300 |
|---|---|---|
| committer | shpuld <shp@cock.li> | 2018-04-11 19:34:40 +0300 |
| commit | a1f6ef1dcac2e79c5a116705ca11d6e7e51ed89c (patch) | |
| tree | 29adae381f962942683fe4f01952f56b2f33fdf0 /src/modules | |
| parent | 82ee24ec31ad89e82c6002fd0dc3593f47adfdb4 (diff) | |
Loads of fixes: notifs, autoload setting, overflow, faint text, reply form, status fadein.
Diffstat (limited to 'src/modules')
| -rw-r--r-- | src/modules/statuses.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/statuses.js b/src/modules/statuses.js index 18191424..8bc0631e 100644 --- a/src/modules/statuses.js +++ b/src/modules/statuses.js @@ -246,7 +246,7 @@ const addNewStatuses = (state, { statuses, showImmediately = false, timeline, us const addNotification = ({type, status, action}) => { // Only add a new notification if we don't have one for the same action if (!find(state.notifications, (oldNotification) => oldNotification.action.id === action.id)) { - state.notifications.push({type, status, action, seen: false}) + state.notifications.push({ type, status, action, seen: false }) if ('Notification' in window && window.Notification.permission === 'granted') { const title = action.user.name |
