diff options
| author | anatawa12 <anatawa12@icloud.com> | 2023-10-05 17:03:50 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-10-05 17:03:50 +0900 |
| commit | ee483f2deee56ecac38ccc5554594c6ecad1cc96 (patch) | |
| tree | dbbea339ab6517b9b74d7e97f1566003ad045ece /packages/frontend/src/components | |
| parent | 2023.10.0-beta.3 (diff) | |
| download | misskey-ee483f2deee56ecac38ccc5554594c6ecad1cc96.tar.gz misskey-ee483f2deee56ecac38ccc5554594c6ecad1cc96.tar.bz2 misskey-ee483f2deee56ecac38ccc5554594c6ecad1cc96.zip | |
Disallow renote of direct note (#11970)
* chore: renoteに関するチェックをまとめる
* fix: ダイレクト投稿をrenoteできる
* fix(frontend): 自分のダイレクト投稿をrenoteできる
* docs(changelog): ダイレクト投稿をリノートできてしまう
* fix lint
* chore(backend): visibilityに関するエラーをApi Errorとして返す
Diffstat (limited to 'packages/frontend/src/components')
| -rw-r--r-- | packages/frontend/src/components/MkNote.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/frontend/src/components/MkNote.vue b/packages/frontend/src/components/MkNote.vue index 4860f42cdc..62deefc67d 100644 --- a/packages/frontend/src/components/MkNote.vue +++ b/packages/frontend/src/components/MkNote.vue @@ -215,7 +215,7 @@ const muted = ref($i ? checkWordMute(appearNote, $i, $i.mutedWords) : false); const translation = ref<any>(null); const translating = ref(false); const showTicker = (defaultStore.state.instanceTicker === 'always') || (defaultStore.state.instanceTicker === 'remote' && appearNote.user.instance); -const canRenote = computed(() => ['public', 'home'].includes(appearNote.visibility) || appearNote.userId === $i.id); +const canRenote = computed(() => ['public', 'home'].includes(appearNote.visibility) || (appearNote.visibility === 'followers' && appearNote.userId === $i.id)); let renoteCollapsed = $ref(defaultStore.state.collapseRenotes && isRenote && (($i && ($i.id === note.userId || $i.id === appearNote.userId)) || (appearNote.myReaction != null))); const keymap = { |