Skip to content
Snippets Groups Projects
Unverified Commit b26e4dc5 authored by anatawa12's avatar anatawa12 Committed by GitHub
Browse files

fix: muteがapiからのuser list timeline取得で機能しない (#11480)

parent 43375409
No related branches found
No related tags found
No related merge requests found
......@@ -29,6 +29,7 @@
### Server
- cacheRemoteFilesの初期値はfalseになりました
- fix: muteがapiからのuser list timeline取得で機能しない問題を修正
## 13.14.2
......
......@@ -96,6 +96,10 @@ export default class extends Endpoint<typeof meta, typeof paramDef> {
.andWhere('userListJoining.userListId = :userListId', { userListId: list.id });
this.queryService.generateVisibilityQuery(query, me);
this.queryService.generateMutedUserQuery(query, me);
this.queryService.generateMutedNoteQuery(query, me);
this.queryService.generateBlockedUserQuery(query, me);
this.queryService.generateMutedUserRenotesQueryForNotes(query, me);
if (ps.includeMyRenotes === false) {
query.andWhere(new Brackets(qb => {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment