Skip to content

Commit

Permalink
Restored original conditions for form filters lookup.
Browse files Browse the repository at this point in the history
  • Loading branch information
adya committed Apr 17, 2024
1 parent 4a1b1f5 commit 5e81cc9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SPID/include/FormData.h
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@ namespace Forms
}
}

return (options & kRequireAll) == 0 || a_formVec.size() == a_rawFormVec.size();
return ((options & kRequireAll) == 0 && !a_formVec.empty()) || a_formVec.size() == a_rawFormVec.size();
}
}

Expand Down

0 comments on commit 5e81cc9

Please # to comment.