Merge branch 'develop' into merge/2024-02-03

# Conflicts:
#	packages/backend/src/core/SearchService.ts
This commit is contained in:
Hazelnoot 2025-02-15 11:30:26 -05:00
commit ec29e12c97

View file

@ -286,9 +286,9 @@ export class SearchService {
if (opts.host) {
if (opts.host === '.') {
query.andWhere('user.host IS NULL');
query.andWhere('note.userHost IS NULL');
} else {
query.andWhere('user.host = :host', { host: opts.host });
query.andWhere('note.userHost = :host', { host: opts.host });
}
}