[Client] Resolve #3895

This commit is contained in:
syuilo 2019-01-16 14:46:54 +09:00
parent 3154350b64
commit eb45eeb1ae
No known key found for this signature in database
GPG key ID: BDC4C49D06AB9D69
2 changed files with 2 additions and 2 deletions

View file

@ -65,7 +65,7 @@ export default Vue.extend({
created() { created() {
this.$root.getMeta().then(meta => { this.$root.getMeta().then(meta => {
this.enableLocalTimeline = !meta.disableLocalTimeline; this.enableLocalTimeline = !meta.disableLocalTimeline || this.$store.state.i.isModerator || this.$store.state.i.isAdmin;
}); });
if (this.$store.state.device.tl) { if (this.$store.state.device.tl) {

View file

@ -112,7 +112,7 @@ export default Vue.extend({
created() { created() {
this.$root.getMeta().then(meta => { this.$root.getMeta().then(meta => {
this.enableLocalTimeline = !meta.disableLocalTimeline; this.enableLocalTimeline = !meta.disableLocalTimeline || this.$store.state.i.isModerator || this.$store.state.i.isAdmin;
}); });
if (this.$store.state.device.tl) { if (this.$store.state.device.tl) {