Skip to content

Commit

Permalink
adjusting column name lookup on tablefimsconnection to be case insens…
Browse files Browse the repository at this point in the history
…itive
  • Loading branch information
jdeck88 committed May 15, 2019
1 parent 39e1672 commit e9466ba
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ List<DocumentField> getFieldsFromMultipleOptions(TableFimsConnectionOptions opti
public DocumentField getTableCol(String colName) {
if(fields != null) {
for(DocumentField field : fields) {
if(field.getCode().equals(colName)) {
if(field.getCode().equalsIgnoreCase(colName)) {
return field;
}
}
Expand Down

0 comments on commit e9466ba

Please sign in to comment.