diff --git a/packages/backend/src/core/NoteCreateService.ts b/packages/backend/src/core/NoteCreateService.ts index 5a1d174d926f..c11eb771b5b5 100644 --- a/packages/backend/src/core/NoteCreateService.ts +++ b/packages/backend/src/core/NoteCreateService.ts @@ -360,7 +360,7 @@ export class NoteCreateService implements OnApplicationShutdown { } // #region Shrimpia - if (user.host != null && mentionedUsers.some(u => u.host !== null)) { + if (user.host != null && mentionedUsers.length > 0) { const userEntity = await this.usersRepository.findOneByOrFail({ id: user.id }); if (userEntity.followersCount === 0) { throw new Error('Temporarily, notes including mentions from remote users which no followers are not allowed');