updated bug修复

This commit is contained in:
mumuy 2022-03-16 10:31:56 +08:00
parent 8a215716d6
commit 8c87a88d24
2 changed files with 3 additions and 3 deletions

File diff suppressed because one or more lines are too long

View File

@ -1591,8 +1591,8 @@
prefixList.forEach(function(prefix){ prefixList.forEach(function(prefix){
nameList.forEach(function(name){ nameList.forEach(function(name){
var newName = prefix+name; var newName = prefix+name;
if(nameList.indexOf(name)==-1){ // 配偶组合的称呼不得已原有称呼冲突(如:妻舅!=妻子的舅舅;外舅公!=老公的舅公) if(nameList.indexOf(newName)==-1){ // 配偶组合的称呼不得已原有称呼冲突(如:妻舅!=妻子的舅舅;外舅公!=老公的舅公)
_map[newKey].push(); _map[newKey].push(newName);
} }
}); });
}); });