diff options
author | Eugen <eugen@zeonfederated.com> | 2017-04-11 22:53:58 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-11 22:53:58 +0200 |
commit | b22b2cbfacdaef2441d14f401c95863d8ca2e66c (patch) | |
tree | 0fe5d26908e2ba5cea36a7698d06e4fdcfc52021 /app/assets/javascripts/components/features/notifications | |
parent | 2f2b84bfbbfa21a09e03dca05e159aadb70d2232 (diff) |
Fix #1491 - Fix broken notifications, broken Link header parsing for exclude_types (#1548)
Diffstat (limited to 'app/assets/javascripts/components/features/notifications')
-rw-r--r-- | app/assets/javascripts/components/features/notifications/components/notification.jsx | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/app/assets/javascripts/components/features/notifications/components/notification.jsx b/app/assets/javascripts/components/features/notifications/components/notification.jsx index 0607466d0..fdebe4bb5 100644 --- a/app/assets/javascripts/components/features/notifications/components/notification.jsx +++ b/app/assets/javascripts/components/features/notifications/components/notification.jsx @@ -79,14 +79,14 @@ const Notification = React.createClass({ const link = <Permalink className='notification__display-name' style={linkStyle} href={account.get('url')} title={account.get('acct')} to={`/accounts/${account.get('id')}`} dangerouslySetInnerHTML={displayNameHTML} />; switch(notification.get('type')) { - case 'follow': - return this.renderFollow(account, link); - case 'mention': - return this.renderMention(notification); - case 'favourite': - return this.renderFavourite(notification, link); - case 'reblog': - return this.renderReblog(notification, link); + case 'follow': + return this.renderFollow(account, link); + case 'mention': + return this.renderMention(notification); + case 'favourite': + return this.renderFavourite(notification, link); + case 'reblog': + return this.renderReblog(notification, link); } } |