diff --git a/src/modules/statuses.js b/src/modules/statuses.js index c7c3d016..0091b736 100644 --- a/src/modules/statuses.js +++ b/src/modules/statuses.js @@ -259,7 +259,10 @@ const addNewStatuses = (state, { statuses, showImmediately = false, timeline, us } }, 'follow': (status) => { - addNotification({ type: 'follow', status: status, action: status }) + let re = new RegExp(`started following ${user.name} \\(${user.statusnet_profile_url}\\)`) + if (status.text.match(re)) { + addNotification({ type: 'follow', status: status, action: status }) + } }, 'deletion': (deletion) => { const uri = deletion.uri