1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-04-30 18:05:51 +02:00

Compare commits

...

3 Commits

Author SHA1 Message Date
Sayamame-beans
b870c34e34 Merge branch 'develop' into KisaragiEffective-patch-6 2025-08-30 20:55:26 +09:00
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にする
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