mirror of
				https://codeberg.org/yeentown/barkey.git
				synced 2025-10-31 13:34:12 +00:00 
			
		
		
		
	
							parent
							
								
									3f6fbbaf05
								
							
						
					
					
						commit
						1f5256b99c
					
				
					 1 changed files with 17 additions and 5 deletions
				
			
		|  | @ -6,7 +6,7 @@ | |||
| import { Inject, Injectable } from '@nestjs/common'; | ||||
| import * as Redis from 'ioredis'; | ||||
| import { DI } from '@/di-symbols.js'; | ||||
| import type { EmojisRepository, NoteReactionsRepository, UsersRepository, NotesRepository } from '@/models/_.js'; | ||||
| import type { EmojisRepository, NoteReactionsRepository, UsersRepository, NotesRepository, NoteThreadMutingsRepository } from '@/models/_.js'; | ||||
| import { IdentifiableError } from '@/misc/identifiable-error.js'; | ||||
| import type { MiRemoteUser, MiUser } from '@/models/User.js'; | ||||
| import type { MiNote } from '@/models/Note.js'; | ||||
|  | @ -81,6 +81,9 @@ export class ReactionService { | |||
| 		@Inject(DI.noteReactionsRepository) | ||||
| 		private noteReactionsRepository: NoteReactionsRepository, | ||||
| 
 | ||||
| 		@Inject(DI.noteThreadMutingsRepository) | ||||
| 		private noteThreadMutingsRepository: NoteThreadMutingsRepository, | ||||
| 
 | ||||
| 		@Inject(DI.emojisRepository) | ||||
| 		private emojisRepository: EmojisRepository, | ||||
| 
 | ||||
|  | @ -244,10 +247,19 @@ export class ReactionService { | |||
| 
 | ||||
| 		// リアクションされたユーザーがローカルユーザーなら通知を作成
 | ||||
| 		if (note.userHost === null) { | ||||
| 			this.notificationService.createNotification(note.userId, 'reaction', { | ||||
| 				noteId: note.id, | ||||
| 				reaction: reaction, | ||||
| 			}, user.id); | ||||
| 			const isThreadMuted = await this.noteThreadMutingsRepository.exist({ | ||||
| 				where: { | ||||
| 					userId: note.userId, | ||||
| 					threadId: note.threadId ?? note.id, | ||||
| 				}, | ||||
| 			}); | ||||
| 
 | ||||
| 			if (!isThreadMuted) { | ||||
| 				this.notificationService.createNotification(note.userId, 'reaction', { | ||||
| 					noteId: note.id, | ||||
| 					reaction: reaction, | ||||
| 				}, user.id); | ||||
| 			} | ||||
| 		} | ||||
| 
 | ||||
| 		//#region 配信
 | ||||
|  |  | |||
		Loading…
	
	Add table
		
		Reference in a new issue