Ignore notifications that reference missing notes

This commit is contained in:
Hazelnoot 2025-03-27 20:30:04 -04:00
parent a92416904f
commit 848a07a170
3 changed files with 22 additions and 3 deletions

View file

@ -35,7 +35,7 @@ export class MastodonLogger {
// TODO move elsewhere
export interface MastodonError {
error: string;
error_description: string;
error_description?: string;
}
export function getErrorData(error: unknown): MastodonError {