forked from FoundKeyGang/FoundKey
Revert "server: fix return of visibilityQuery
function"
This reverts commit 32f4bee5e8
.
It is the right thing to do in theory, but it doesn't work.
I hate typeorm.
This commit is contained in:
parent
32f4bee5e8
commit
57e4971214
1 changed files with 2 additions and 2 deletions
|
@ -8,10 +8,10 @@ export function visibilityQuery(q: SelectQueryBuilder<Note>, meId?: User['id'] |
|
|||
.from(() => q, 'note');
|
||||
|
||||
if (meId == null) {
|
||||
superQuery.where('note_visible(note.id, null)');
|
||||
superQuery.where('note_visible(note.id, null);');
|
||||
} else {
|
||||
superQuery.where('note_visible(note.id, :meId)', { meId });
|
||||
}
|
||||
|
||||
return superQuery;
|
||||
return q;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue