Skip to content
Snippets Groups Projects
Unverified Commit e0cf5b24 authored by Porlam Nicla's avatar Porlam Nicla Committed by GitHub
Browse files

配信停止したインスタンス一覧が見れなくなる問題を修正 (#13945)

* 配信停止したインスタンス一覧が見れなくなる問題を修正

* Update CHANGELOG.md
parent 85927161
No related branches found
No related tags found
No related merge requests found
## Unreleased
### General
-
- Fix: 配信停止したインスタンス一覧が見れなくなる問題を修正
### Client
-
......
......@@ -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\'');
}
}
......
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