Skip to content

Commit

Permalink
配信停止したインスタンス一覧が見れなくなる問題を修正 (misskey-dev#13945)
Browse files Browse the repository at this point in the history
* 配信停止したインスタンス一覧が見れなくなる問題を修正

* Update CHANGELOG.md
  • Loading branch information
GrapeApple0 authored and anatawa12 committed Jun 20, 2024
1 parent f5bfb54 commit e5e0b59
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
- Feat: VRTL/VSTLに連合なし投稿を含めるかを選択可能に
- もともとのVRTL/VSTLでは連合なし投稿が常に含まれていましたが、正しくVRTL/VSTLのノートを表現するために含めないようにできるようになりました
- VSTLの場合、連合なし投稿を含めないようにしてもフォローしている人の連合なし投稿は表示されます
- Fix: 配信停止したインスタンス一覧が見れなくなる問題を修正

### Client
- Fix: ウィジェットでVRTL/VSTLが使用できない問題を修正
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -117,9 +117,9 @@ export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-

if (typeof ps.suspended === 'boolean') {
if (ps.suspended) {
query.andWhere('instance.isSuspended = TRUE');
query.andWhere('instance.suspensionState != \'none\'');
} else {
query.andWhere('instance.isSuspended = FALSE');
query.andWhere('instance.suspensionState = \'none\'');
}
}

Expand Down

0 comments on commit e5e0b59

Please sign in to comment.