mirror of
				https://codeberg.org/yeentown/barkey.git
				synced 2025-11-04 15:34:13 +00:00 
			
		
		
		
	upd: filter fallback to db for silenced users
This commit is contained in:
		
							parent
							
								
									4b230d792c
								
							
						
					
					
						commit
						bb54909d8e
					
				
					 3 changed files with 19 additions and 4 deletions
				
			
		| 
						 | 
				
			
			@ -238,7 +238,12 @@ export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-
 | 
			
		|||
				}
 | 
			
		||||
				//#endregion
 | 
			
		||||
 | 
			
		||||
				const timeline = await query.limit(ps.limit).getMany();
 | 
			
		||||
				let timeline = await query.limit(ps.limit).getMany();
 | 
			
		||||
 | 
			
		||||
				timeline = timeline.filter(note => {
 | 
			
		||||
					if (note.user?.isSilenced && note.userId !== me.id && !followings[note.userId]) return false;
 | 
			
		||||
					return true;
 | 
			
		||||
				});
 | 
			
		||||
 | 
			
		||||
				process.nextTick(() => {
 | 
			
		||||
					this.activeUsersChart.read(me);
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -171,7 +171,12 @@ export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-
 | 
			
		|||
					query.andWhere('note.fileIds != \'{}\'');
 | 
			
		||||
				}
 | 
			
		||||
 | 
			
		||||
				const timeline = await query.limit(ps.limit).getMany();
 | 
			
		||||
				let timeline = await query.limit(ps.limit).getMany();
 | 
			
		||||
 | 
			
		||||
				timeline = timeline.filter(note => {
 | 
			
		||||
					if (note.user?.isSilenced && me && followings && note.userId !== me.id && !followings[note.userId]) return false;
 | 
			
		||||
					return true;
 | 
			
		||||
				});
 | 
			
		||||
 | 
			
		||||
				process.nextTick(() => {
 | 
			
		||||
					if (me) {
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -199,7 +199,12 @@ export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-
 | 
			
		|||
				}
 | 
			
		||||
				//#endregion
 | 
			
		||||
 | 
			
		||||
				const timeline = await query.limit(ps.limit).getMany();
 | 
			
		||||
				let timeline = await query.limit(ps.limit).getMany();
 | 
			
		||||
 | 
			
		||||
				timeline = timeline.filter(note => {
 | 
			
		||||
					if (note.user?.isSilenced && note.userId !== me.id && !followings[note.userId]) return false;
 | 
			
		||||
					return true;
 | 
			
		||||
				});
 | 
			
		||||
 | 
			
		||||
				process.nextTick(() => {
 | 
			
		||||
					this.activeUsersChart.read(me);
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		
		Reference in a new issue