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');
|
throw new Error('Renote target is not public or home');
|
||||||
}
|
}
|
||||||
|
|
||||||
// Renote対象がfollowersならfollowersにする
|
// Renote対象がpublic/homeならfollowersにする
|
||||||
data.visibility = 'followers';
|
if (data.visibility === 'public' || data.visibility === 'home') {
|
||||||
|
data.visibility = 'followers';
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
case 'specified':
|
case 'specified':
|
||||||
// specified / direct noteはreject
|
// specified / direct noteはreject
|
||||||
|
|
Loading…
Reference in New Issue