From 3b34b3e9ea679e09c4796bcc8cb26ad1ec181119 Mon Sep 17 00:00:00 2001 From: syuilo Date: Thu, 6 Feb 2020 14:29:36 +0900 Subject: Fix #5843 --- src/client/components/note.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/client/components') diff --git a/src/client/components/note.vue b/src/client/components/note.vue index f143fe75ae..7600a40582 100644 --- a/src/client/components/note.vue +++ b/src/client/components/note.vue @@ -458,7 +458,7 @@ export default Vue.extend({ }, showRenoteMenu(ev) { - if (!this.isMyNote) return; + if (!this.$store.getters.isSignedIn || (this.$store.state.i.id !== this.note.userId)) return; this.$root.menu({ items: [{ text: this.$t('unrenote'), -- cgit v1.2.3-freya