fix: do not show "signed up" notifications in mentions tab (#2203)

Partially addresses #2199
This commit is contained in:
Nolan Lawson 2022-11-18 09:32:54 -08:00 committed by GitHub
parent 52880a4689
commit fb5478cd06
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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