1
0

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
+2 -2
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 });
}
}