The value we are looking for is federationPolicy.enabled, not federationPolicy.federating

Also the || true fallback does not work and always becomes true
This commit is contained in:
Mark Felder 2019-12-12 13:56:07 -06:00
parent 2514dc183f
commit 0743fbb28b
2 changed files with 2 additions and 2 deletions

View file

@ -11,7 +11,7 @@ const NavPanel = {
chat: state => state.chat.channel,
followRequestCount: state => state.api.followRequests.length,
privateMode: state => state.instance.private,
federating: state => state.instance.federationPolicy.federating || true
federating: state => state.instance.federationPolicy.enabled
})
}