Merge branch 'expand-schema' into stream-types

This commit is contained in:
tamaina 2021-09-06 13:10:14 +09:00
commit 20c26c9dbd
24 changed files with 120 additions and 115 deletions

View file

@ -166,8 +166,8 @@ export default class Connection {
};
add(note);
if (note.reply) add(note.reply as PackedNote);
if (note.renote) add(note.renote as PackedNote);
if (note.reply) add(note.reply);
if (note.renote) add(note.renote);
}
@autobind