1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-25 02:44:03 +02:00

fix unclosed literal

This commit is contained in:
Kisaragi
2025-05-06 00:17:07 +09:00
parent 67f2170e38
commit db4b9962c7

View File

@@ -295,7 +295,7 @@ export class NoteCreateService implements OnApplicationShutdown {
}
// Renote対象がpublic/homeならfollowersにする
if (data.visibility === 'public' || data.visibility === 'home) {
if (data.visibility === 'public' || data.visibility === 'home') {
data.visibility = 'followers';
}
break;