fix: フォロワー投稿をダイレクトで引用したときにダイレクトにする
This commit is contained in:
parent
0133dbfe7e
commit
67f2170e38
|
@ -294,8 +294,10 @@ export class NoteCreateService implements OnApplicationShutdown {
|
|||
throw new Error('Renote target is not public or home');
|
||||
}
|
||||
|
||||
// Renote対象がfollowersならfollowersにする
|
||||
// Renote対象がpublic/homeならfollowersにする
|
||||
if (data.visibility === 'public' || data.visibility === 'home) {
|
||||
data.visibility = 'followers';
|
||||
}
|
||||
break;
|
||||
case 'specified':
|
||||
// specified / direct noteはreject
|
||||
|
|
Loading…
Reference in New Issue