summaryrefslogtreecommitdiff
path: root/src/client/components
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2020-02-06 14:29:36 +0900
committersyuilo <Syuilotan@yahoo.co.jp>2020-02-06 14:29:36 +0900
commit3b34b3e9ea679e09c4796bcc8cb26ad1ec181119 (patch)
tree4f6aa3c64d0d9754d2e06102ce790754bcd782b6 /src/client/components
parentUpdate CHANGELOG.md (diff)
downloadmisskey-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.vue2
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'),