fix: do not show "signed up" notifications in mentions tab

Partially addresses #2199
This commit is contained in:
Nolan Lawson 2022-11-18 07:10:21 -08:00
parent 601c3e40c9
commit 40ab8bef7a
1 changed files with 1 additions and 1 deletions

View File

@ -66,7 +66,7 @@ export async function getTimeline (instanceName, accessToken, timeline, maxId, s
} }
if (timeline === 'notifications/mentions') { if (timeline === 'notifications/mentions') {
params.exclude_types = ['follow', 'favourite', 'reblog', 'poll'] params.exclude_types = ['follow', 'favourite', 'reblog', 'poll', 'admin.sign_up']
} }
url += '?' + paramsString(params) url += '?' + paramsString(params)