check prohibited words when editing note

This commit is contained in:
dakkar 2024-02-19 14:27:10 +00:00
parent 764bbcf05b
commit 9c1437bdf9
1 changed files with 4 additions and 0 deletions

View File

@ -275,6 +275,10 @@ export class NoteEditService implements OnApplicationShutdown {
}
}
if (this.utilityService.isKeyWordIncluded(data.cw ?? data.text ?? '', meta.prohibitedWords)) {
throw new NoteEditService.ContainsProhibitedWordsError();
}
const inSilencedInstance = this.utilityService.isSilencedHost((meta).silencedHosts, user.host);
if (data.visibility === 'public' && inSilencedInstance && user.host !== null) {