Merge b870c34e34
into 6a80c23a50
This commit is contained in:
commit
0a20419f87
|
@ -294,8 +294,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