diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2020-02-06 14:29:36 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2020-02-06 14:29:36 +0900 |
| commit | 3b34b3e9ea679e09c4796bcc8cb26ad1ec181119 (patch) | |
| tree | 4f6aa3c64d0d9754d2e06102ce790754bcd782b6 /src/client/components | |
| parent | Update CHANGELOG.md (diff) | |
| download | misskey-3b34b3e9ea679e09c4796bcc8cb26ad1ec181119.tar.gz misskey-3b34b3e9ea679e09c4796bcc8cb26ad1ec181119.tar.bz2 misskey-3b34b3e9ea679e09c4796bcc8cb26ad1ec181119.zip | |
Fix #5843
Diffstat (limited to 'src/client/components')
| -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'), |