mirror of
				https://codeberg.org/yeentown/barkey.git
				synced 2025-10-30 21:14:12 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
	
		
			331 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
	
		
			331 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| /*
 | |
|  * SPDX-FileCopyrightText: syuilo and misskey-project
 | |
|  * SPDX-License-Identifier: AGPL-3.0-only
 | |
|  */
 | |
| 
 | |
| import { MiUser } from '@/models/User.js';
 | |
| 
 | |
| export function isReply(note: any, viewerId?: MiUser['id'] | undefined | null): boolean {
 | |
| 	return note.replyId && note.replyUserId !== note.userId && note.replyUserId !== viewerId;
 | |
| }
 |