This commit is contained in:
tamaina 2023-01-12 16:33:00 +00:00
parent b2c79a5f2c
commit ba349fc62f
1 changed files with 1 additions and 1 deletions

View File

@ -226,7 +226,7 @@ export class NoteCreateService {
if (data.channel != null) data.localOnly = true;
if (data.visibility === 'public' && data.channel == null) {
if ((await this.roleService.getUserRoleOptions(user.id)).canPublicNote) {
if ((await this.roleService.getUserRoleOptions(user.id)).canPublicNote === false) {
data.visibility = 'home';
}
}