Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
IoTKETI committed Oct 1, 2019
2 parents cf4c897 + 24d1bf7 commit b398dec
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion mobius/responder.js
Original file line number Diff line number Diff line change
Expand Up @@ -806,7 +806,10 @@ function typeCheckAction(index1, body_Obj) {
if(body_Obj.hasOwnProperty(index2)) {
if (body_Obj[index2] == null || body_Obj[index2] == '' || body_Obj[index2] == 'undefined' || body_Obj[index2] == '[]' || body_Obj[index2] == '\"\"') {
//delete body_Obj[index2];
if(index2 != 'pi' && index2 != 'pv') {
if(index2 != 'pi') {
delete body_Obj[index2];
}
else if(index2 != 'pv') {
delete body_Obj[index2];
}
}
Expand Down

0 comments on commit b398dec

Please sign in to comment.