diff --git a/packages/backend/src/core/SearchService.ts b/packages/backend/src/core/SearchService.ts
index 05052620ed06870c5aed442fa2c8df71ee5598e2..1c18a52fae995123e489002967fe98c441a17e89 100644
--- a/packages/backend/src/core/SearchService.ts
+++ b/packages/backend/src/core/SearchService.ts
@@ -139,9 +139,10 @@ export class SearchService {
 				limit: pagination.limit,
 			});
 			if (res.hits.length === 0) return [];
-			return await this.notesRepository.findBy({
+			const notes = await this.notesRepository.findBy({
 				id: In(res.hits.map(x => x.id)),
 			});
+			return notes.sort((a, b) => a.id > b.id ? -1 : 1);
 		} else {
 			const query = this.queryService.makePaginationQuery(this.notesRepository.createQueryBuilder('note'), pagination.sinceId, pagination.untilId);