parent
7436e0da18
commit
0fc36d11d7
1 changed files with 4 additions and 1 deletions
|
@ -237,7 +237,10 @@ export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-
|
||||||
if (followingChannels.length > 0) {
|
if (followingChannels.length > 0) {
|
||||||
const followingChannelIds = followingChannels.map(x => x.followeeId);
|
const followingChannelIds = followingChannels.map(x => x.followeeId);
|
||||||
|
|
||||||
query.andWhere('note.channelId IN (:...followingChannelIds) OR note.channelId IS NULL', { followingChannelIds });
|
query.andWhere(new Brackets(qb => {
|
||||||
|
qb.where('note.channelId IN (:...followingChannelIds)', { followingChannelIds });
|
||||||
|
qb.andWhere('note.channelId IS NULL');
|
||||||
|
}));
|
||||||
} else {
|
} else {
|
||||||
query.andWhere('note.channelId IS NULL');
|
query.andWhere('note.channelId IS NULL');
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue