fix: do not show "signed up" notifications in mentions tab
Partially addresses #2199
This commit is contained in:
parent
601c3e40c9
commit
40ab8bef7a
|
@ -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 New Issue