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 Jun 7, 2024
1 parent 8592716 commit e0cf5b2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
## Unreleased

### General
-
- Fix: 配信停止したインスタンス一覧が見れなくなる問題を修正

### Client
-
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

1 comment on commit e0cf5b2

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Chromatic detects changes. Please review the changes on Chromatic.

Please sign in to comment.