1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-01 06:55:47 +02:00

Compare commits

...

2 Commits

Author SHA1 Message Date
Kisaragi
db4b9962c7 fix unclosed literal 2025-05-10 12:36:55 +09:00
Kisaragi
67f2170e38 fix: フォロワー投稿をダイレクトで引用したときにダイレクトにする 2025-05-10 12:36:55 +09:00

View File

@@ -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にする
if (data.visibility === 'public' || data.visibility === 'home') {
data.visibility = 'followers'; data.visibility = 'followers';
}
break; break;
case 'specified': case 'specified':
// specified / direct noteはreject // specified / direct noteはreject