Skip to content
Snippets Groups Projects
Commit 149aeae8 authored by Mohammad Alayoub's avatar Mohammad Alayoub
Browse files

filter the app language if the language of comment is auto

parent 783ad1fc
Branches
Tags
No related merge requests found
...@@ -37,13 +37,13 @@ export class TopicCloudAdminService { ...@@ -37,13 +37,13 @@ export class TopicCloudAdminService {
.concat(BadWords['ar']) .concat(BadWords['ar'])
.concat(BadWords['ru']) .concat(BadWords['ru'])
.concat(BadWords['tr']); .concat(BadWords['tr']);
this.wsRoomService.getRoomStream(localStorage.getItem('roomId')).subscribe(msg => { this.wsRoomService.getRoomStream(localStorage.getItem('roomId')).subscribe(msg => {
const message = JSON.parse(msg.body); const message = JSON.parse(msg.body);
const room = message.payload.changes; const room = message.payload.changes;
if (message.type === 'RoomPatched') { if (message.type === 'RoomPatched') {
this.blacklist.next(room.blacklist ? JSON.parse(room.blacklist) : []); this.blacklist.next(room.blacklist ? JSON.parse(room.blacklist) : []);
} }
}); });
} }
static get getDefaultAdminData(): TopicCloudAdminData { static get getDefaultAdminData(): TopicCloudAdminData {
...@@ -196,7 +196,7 @@ export class TopicCloudAdminService { ...@@ -196,7 +196,7 @@ export class TopicCloudAdminService {
let filteredString = str; let filteredString = str;
let profWords = []; let profWords = [];
if (censorLanguageSpecificCheck) { if (censorLanguageSpecificCheck) {
profWords = BadWords[(lang !== 'AUTO' ? lang.toLowerCase() : 'de')]; profWords = BadWords[(lang !== 'AUTO' ? lang.toLowerCase() : localStorage.getItem('currentLang'))];
} else { } else {
profWords = this.profanityWords; profWords = this.profanityWords;
} }
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment