summaryrefslogtreecommitdiff
path: root/src/misc/is-quote.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/misc/is-quote.ts')
-rw-r--r--src/misc/is-quote.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/misc/is-quote.ts b/src/misc/is-quote.ts
index 420f03a489..a99b8f6434 100644
--- a/src/misc/is-quote.ts
+++ b/src/misc/is-quote.ts
@@ -1,5 +1,5 @@
import { INote } from '../models/note';
export default function(note: INote): boolean {
- return note.renoteId != null && (note.text != null || note.poll != null || (note.mediaIds != null && note.mediaIds.length > 0));
+ return note.renoteId != null && (note.text != null || note.poll != null || (note.fileIds != null && note.fileIds.length > 0));
}