used wrong channel for cyrillic check

This commit is contained in:
HF 2020-11-06 22:00:37 +01:00
parent d5e4da904f
commit 8c6018a4ad

View File

@ -235,7 +235,7 @@ export class ChatProvider {
}
}
if (message.match(this.cyrillic) && channelId === this.intChannelId) {
if (message.match(this.cyrillic) && channelId === this.enChannelId) {
return 'Please use int channel';
}