fix: do not show "signed up" notifications in mentions tab (#2203)
Partially addresses #2199
This commit is contained in:
parent
52880a4689
commit
fb5478cd06
|
@ -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)
|
||||||
|
|
Loading…
Reference in a new issue