chore(frontend): renote of note in sensitive channel is now home renote by default. (#11476)
* chore(frontend): renote of note in sensitive channel is now home renote by default. * docs: センシティブチャンネルのNoteのReNoteはデフォルトでHome TLに流れるようになりました --------- Co-authored-by: syuilo <Syuilotan@yahoo.co.jp>
This commit is contained in:
		| @@ -319,9 +319,15 @@ function renote(viaKeyboard = false) { | ||||
| 			const configuredVisibility = defaultStore.state.rememberNoteVisibility ? defaultStore.state.visibility : defaultStore.state.defaultNoteVisibility; | ||||
| 			const localOnly = defaultStore.state.rememberNoteVisibility ? defaultStore.state.localOnly : defaultStore.state.defaultNoteLocalOnly; | ||||
|  | ||||
| 			let visibility = appearNote.visibility; | ||||
| 			visibility = smallerVisibility(visibility, configuredVisibility); | ||||
| 			if (appearNote.channel?.isSensitive) { | ||||
| 				visibility = smallerVisibility(visibility, 'home'); | ||||
| 			} | ||||
|  | ||||
| 			os.api('notes/create', { | ||||
| 				localOnly, | ||||
| 				visibility: smallerVisibility(appearNote.visibility, configuredVisibility), | ||||
| 				visibility, | ||||
| 				renoteId: appearNote.id, | ||||
| 			}).then(() => { | ||||
| 				os.toast(i18n.ts.renoted); | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 anatawa12
					anatawa12