end ban of cyrillic in en channel

This commit is contained in:
HF 2020-05-18 08:14:24 +02:00
parent 4169bf8d8a
commit a2ac51929d

View File

@ -21,7 +21,6 @@ export class ChatProvider {
this.history.push([]); this.history.push([]);
} }
this.caseCheck = /^[A-Z !.]*$/; this.caseCheck = /^[A-Z !.]*$/;
this.cyrillic = new RegExp('[\u0436-\u043B]');
this.filters = [ this.filters = [
{ {
regexp: /ADMIN/gi, regexp: /ADMIN/gi,
@ -82,10 +81,6 @@ export class ChatProvider {
return 'Stop shouting'; return 'Stop shouting';
} }
if (message.match(this.cyrillic) && channelId === 0) {
return 'Please use int channel';
}
for (let i = 0; i < this.filters.length; i += 1) { for (let i = 0; i < this.filters.length; i += 1) {
const filter = this.filters[i]; const filter = this.filters[i];
const count = (message.match(filter.regexp) || []).length; const count = (message.match(filter.regexp) || []).length;