mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-10 11:13:09 +02:00
fix(client): moderators cannot view instance-info page
This commit is contained in:
parent
2d181ba5af
commit
c9d4c00708
1 changed files with 1 additions and 2 deletions
|
@ -141,12 +141,11 @@ async function fetch() {
|
||||||
// suspended and blocked information is only displayed to moderators.
|
// suspended and blocked information is only displayed to moderators.
|
||||||
// otherwise the API will error anyway
|
// otherwise the API will error anyway
|
||||||
|
|
||||||
meta = await os.api('admin/meta', { detail: true });
|
|
||||||
instance = await os.api('federation/show-instance', {
|
instance = await os.api('federation/show-instance', {
|
||||||
host: props.host,
|
host: props.host,
|
||||||
});
|
});
|
||||||
suspended = instance.isSuspended;
|
suspended = instance.isSuspended;
|
||||||
isBlocked = meta.blockedHosts.includes(instance.host);
|
isBlocked = instance.isBlocked;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue