diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/client/components/note.vue | 2 |
1 files changed, 1 insertions, 1 deletions
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'), |