This commit is contained in:
tamaina 2023-01-12 16:33:00 +00:00
parent b2c79a5f2c
commit ba349fc62f

View file

@ -226,7 +226,7 @@ export class NoteCreateService {
if (data.channel != null) data.localOnly = true; if (data.channel != null) data.localOnly = true;
if (data.visibility === 'public' && data.channel == null) { 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'; data.visibility = 'home';
} }
} }