fix unclosed literal

This commit is contained in:
Kisaragi 2025-05-06 00:17:07 +09:00
parent 67f2170e38
commit db4b9962c7
1 changed files with 1 additions and 1 deletions

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;