From 77ebabb3dc76d6a422ea576ed60e5e4afe72d637 Mon Sep 17 00:00:00 2001 From: syuilo <4439005+syuilo@users.noreply.github.com> Date: Mon, 14 Oct 2024 17:51:47 +0900 Subject: Revert "refactor" This reverts commit 7fd8ef344b33b0a157bc197cbd64069695806936. --- packages/backend/src/misc/is-renote.ts | 11 ----------- 1 file changed, 11 deletions(-) (limited to 'packages/backend/src/misc') diff --git a/packages/backend/src/misc/is-renote.ts b/packages/backend/src/misc/is-renote.ts index 245057c64e..48f821806c 100644 --- a/packages/backend/src/misc/is-renote.ts +++ b/packages/backend/src/misc/is-renote.ts @@ -36,17 +36,6 @@ export function isQuote(note: Renote): note is Quote { note.fileIds.length > 0; } -export function isPureRenote(note: MiNote): note is MiNote & { renoteId: MiNote['id']; renote: MiNote } { - return ( - note.renote != null && - note.reply == null && - note.text == null && - note.cw == null && - (note.fileIds == null || note.fileIds.length === 0) && - !note.hasPoll - ); -} - type PackedRenote = Packed<'Note'> & { renoteId: NonNullable['renoteId']> -- cgit v1.2.3-freya