Merge b870c34e34 into 2168395b71
This commit is contained in:
commit
123aeea955
|
|
@ -462,8 +462,10 @@ export class NoteCreateService implements OnApplicationShutdown {
|
|||
throw new Error('Renote target is not public or home');
|
||||
}
|
||||
|
||||
// Renote対象がfollowersならfollowersにする
|
||||
data.visibility = '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