Fix wegame filter

This commit is contained in:
tobspr 2021-08-04 14:15:33 +02:00
parent e9db892399
commit 2e245bda91
1 changed files with 4 additions and 1 deletions

View File

@ -48,9 +48,12 @@ function init(isDev) {
function listen() { function listen() {
console.log("wegame: listen"); console.log("wegame: listen");
ipcMain.handle("profanity-check", async (event, data) => { ipcMain.handle("profanity-check", async (event, data) => {
if (data.length === 0) {
return "";
}
const result = railsdk.RailUtils.DirtyWordsFilter(data, true); const result = railsdk.RailUtils.DirtyWordsFilter(data, true);
if (result.check_result.dirty_type !== 0 /** kRailDirtyWordsTypeNormalAllowWords */) { if (result.check_result.dirty_type !== 0 /** kRailDirtyWordsTypeNormalAllowWords */) {
return result.check_result; return result.check_result.replace_string;
} }
return data; return data;