[backend/core] Fix ResolveNoteMentionsAsync regression
This commit is contained in:
parent
e391aebce5
commit
912c50488f
1 changed files with 1 additions and 1 deletions
|
@ -1027,7 +1027,7 @@ public class NoteService(
|
|||
.SelectMany(p => p.Children.Append(p))
|
||||
.OfType<MfmMentionNode>()
|
||||
.DistinctBy(p => p.Acct)
|
||||
.Select(p => userResolver.ResolveOrNullAsync(p.Acct, ResolveFlags.Acct))
|
||||
.Select(p => userResolver.ResolveOrNullAsync($"acct:{p.Acct}", ResolveFlags.Acct))
|
||||
.AwaitAllNoConcurrencyAsync()
|
||||
: [];
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue