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
})
}

View File

@ -46,7 +46,7 @@ const SideDrawer = {
return this.$store.state.instance.private
},
federating () {
return this.$store.state.instance.federationPolicy.federating || true
return this.$store.state.instance.federationPolicy.enabled
}
},
methods: {