mirror of
				https://codeberg.org/yeentown/barkey.git
				synced 2025-11-04 07:24:13 +00:00 
			
		
		
		
	Fix #2738
This commit is contained in:
		
							parent
							
								
									faf29b768f
								
							
						
					
					
						commit
						cd7f8b080e
					
				
					 1 changed files with 9 additions and 3 deletions
				
			
		| 
						 | 
				
			
			@ -1,13 +1,19 @@
 | 
			
		|||
import * as mongo from 'mongodb';
 | 
			
		||||
 | 
			
		||||
function toString(id: any) {
 | 
			
		||||
	return mongo.ObjectID.prototype.isPrototypeOf(id) ? (id as mongo.ObjectID).toHexString() : id;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
export default function(note: any, mutedUserIds: string[]): boolean {
 | 
			
		||||
	if (mutedUserIds.indexOf(note.userId) != -1) {
 | 
			
		||||
	if (mutedUserIds.includes(toString(note.userId))) {
 | 
			
		||||
		return true;
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	if (note.reply != null && mutedUserIds.indexOf(note.reply.userId) != -1) {
 | 
			
		||||
	if (note.reply != null && mutedUserIds.includes(toString(note.reply.userId))) {
 | 
			
		||||
		return true;
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	if (note.renote != null && mutedUserIds.indexOf(note.renote.userId) != -1) {
 | 
			
		||||
	if (note.renote != null && mutedUserIds.includes(toString(note.renote.userId))) {
 | 
			
		||||
		return true;
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		
		Reference in a new issue