Skip to content
Snippets Groups Projects
Unverified Commit 4422219b authored by tamaina's avatar tamaina Committed by GitHub
Browse files

fix: アンテナが既読にならないのを修正 (#7809)

parent 4b2afec1
No related branches found
No related tags found
No related merge requests found
......@@ -52,7 +52,7 @@ export default async function(
if (note.user != null) { // たぶんnullになることは無いはずだけど一応
for (const antenna of myAntennas) {
if (checkHitAntenna(antenna, note, note.user as any, undefined, Array.from(following))) {
if (await checkHitAntenna(antenna, note, note.user as any, undefined, Array.from(following))) {
readAntennaNotes.push(note);
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment