Compare commits

..

No commits in common. "e89f4ff3c8dd56e458ac6e9b5dc58c79910f73cf" and "610f208c57fd3f46c3ef7f7b9c5d71207a893a33" have entirely different histories.

2 changed files with 2 additions and 11 deletions

View file

@ -90,6 +90,6 @@ jobs:
if: ${{ matrix.workspace == 'backend' }} if: ${{ matrix.workspace == 'backend' }}
- run: pnpm --filter misskey-reversi run build:tsc - run: pnpm --filter misskey-reversi run build:tsc
if: ${{ matrix.workspace == 'backend' }} if: ${{ matrix.workspace == 'backend' }}
- run: pnpm --filter misskey-bubble-game run build - run: pnpm --filter misskey-bubble-game run build:tsc
if: ${{ matrix.workspace == 'backend' }} if: ${{ matrix.workspace == 'backend' }}
- run: pnpm --filter ${{ matrix.workspace }} run typecheck - run: pnpm --filter ${{ matrix.workspace }} run typecheck

View file

@ -816,17 +816,8 @@ export class NoteCreateService implements OnApplicationShutdown {
// Notify // Notify
if (data.renote.userHost === null) { if (data.renote.userHost === null) {
const isThreadMuted = await this.noteThreadMutingsRepository.exist({
where: {
userId: data.renote.userId,
threadId: data.renote.threadId ?? data.renote.id,
},
});
if (!isThreadMuted) {
nm.push(data.renote.userId, type); nm.push(data.renote.userId, type);
} }
}
// Publish event // Publish event
if ((user.id !== data.renote.userId) && data.renote.userHost === null) { if ((user.id !== data.renote.userId) && data.renote.userHost === null) {