mirror of
				https://codeberg.org/yeentown/barkey.git
				synced 2025-11-04 15:34:13 +00:00 
			
		
		
		
	fix: query error in notes/featured (#12439)
This commit is contained in:
		
							parent
							
								
									2ee48ae04d
								
							
						
					
					
						commit
						d32631d159
					
				
					 1 changed files with 4 additions and 4 deletions
				
			
		| 
						 | 
					@ -64,16 +64,16 @@ export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-
 | 
				
			||||||
				}
 | 
									}
 | 
				
			||||||
			}
 | 
								}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
			if (noteIds.length === 0) {
 | 
					 | 
				
			||||||
				return [];
 | 
					 | 
				
			||||||
			}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
			noteIds.sort((a, b) => a > b ? -1 : 1);
 | 
								noteIds.sort((a, b) => a > b ? -1 : 1);
 | 
				
			||||||
			if (ps.untilId) {
 | 
								if (ps.untilId) {
 | 
				
			||||||
				noteIds = noteIds.filter(id => id < ps.untilId!);
 | 
									noteIds = noteIds.filter(id => id < ps.untilId!);
 | 
				
			||||||
			}
 | 
								}
 | 
				
			||||||
			noteIds = noteIds.slice(0, ps.limit);
 | 
								noteIds = noteIds.slice(0, ps.limit);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
								if (noteIds.length === 0) {
 | 
				
			||||||
 | 
									return [];
 | 
				
			||||||
 | 
								}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
			const query = this.notesRepository.createQueryBuilder('note')
 | 
								const query = this.notesRepository.createQueryBuilder('note')
 | 
				
			||||||
				.where('note.id IN (:...noteIds)', { noteIds: noteIds })
 | 
									.where('note.id IN (:...noteIds)', { noteIds: noteIds })
 | 
				
			||||||
				.innerJoinAndSelect('note.user', 'user')
 | 
									.innerJoinAndSelect('note.user', 'user')
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		
		Reference in a new issue