mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-22 18:07:31 -07:00
[mastodon-client] Don't display unsupported notification types
This commit is contained in:
parent
197977c3a8
commit
3d5da39d83
1 changed files with 6 additions and 1 deletions
|
@ -10,6 +10,7 @@ import Entity from './entity'
|
||||||
import { MegalodonInterface, WebSocketInterface, NoImplementedError, ArgumentError, UnexpectedError } from './megalodon'
|
import { MegalodonInterface, WebSocketInterface, NoImplementedError, ArgumentError, UnexpectedError } from './megalodon'
|
||||||
import MegalodonEntity from "@/entity";
|
import MegalodonEntity from "@/entity";
|
||||||
import fs from "node:fs";
|
import fs from "node:fs";
|
||||||
|
import MisskeyNotificationType from "./misskey/notification";
|
||||||
|
|
||||||
type AccountCache = {
|
type AccountCache = {
|
||||||
locks: AsyncLock,
|
locks: AsyncLock,
|
||||||
|
@ -2238,7 +2239,11 @@ export default class Misskey implements MegalodonInterface {
|
||||||
}
|
}
|
||||||
return this.client
|
return this.client
|
||||||
.post<Array<MisskeyAPI.Entity.Notification>>('/api/i/notifications', params)
|
.post<Array<MisskeyAPI.Entity.Notification>>('/api/i/notifications', params)
|
||||||
.then(res => ({ ...res, data: res.data.map(n => this.converter.notification(n, this.baseUrlToHost(this.baseUrl))) }))
|
.then(res => ({
|
||||||
|
...res,
|
||||||
|
data: res.data
|
||||||
|
.filter(p => p.type != MisskeyNotificationType.FollowRequestAccepted) // these aren't supported on mastodon
|
||||||
|
.map(n => this.converter.notification(n, this.baseUrlToHost(this.baseUrl))) }))
|
||||||
}
|
}
|
||||||
|
|
||||||
public async getNotification(_id: string): Promise<Response<Entity.Notification>> {
|
public async getNotification(_id: string): Promise<Response<Entity.Notification>> {
|
||||||
|
|
Loading…
Reference in a new issue