fix: only fetch admin/meta if admin
This commit is contained in:
parent
5d88fc4555
commit
da61357f2d
|
@ -398,7 +398,7 @@ const usersPagination = {
|
||||||
};
|
};
|
||||||
|
|
||||||
async function fetch() {
|
async function fetch() {
|
||||||
meta = (await os.api("admin/meta")) as AugmentedInstanceMetadata;
|
if (iAmAdmin) meta = (await os.api("admin/meta")) as AugmentedInstanceMetadata;
|
||||||
instance = (await os.api("federation/show-instance", {
|
instance = (await os.api("federation/show-instance", {
|
||||||
host: props.host,
|
host: props.host,
|
||||||
})) as AugmentedInstance;
|
})) as AugmentedInstance;
|
||||||
|
|
Loading…
Reference in New Issue