Skip to content

Commit

Permalink
Merge pull request #17 from ActianCorp/tdvt_handle_missing_config
Browse files Browse the repository at this point in the history
Initial fix for #16
  • Loading branch information
clach04 authored Nov 11, 2021
2 parents 4f31938 + 87619bf commit f5e59c0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions actian_odbc/connectionBuilder.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@

// support any ODBC connection attribute
// specify as OPTION=VALUE;OPTION2=VALUE2
var tmp_input = attr[connectionHelper.attributeVendor1].trim()
var tmp_input = attr[connectionHelper.attributeVendor1]
if (tmp_input)
{
// trim() maybe overkill, better safe than sorry
tmp_input = tmp_input.trim() // trim() maybe overkill, better safe than sorry
var tmp_list = tmp_input.split(';');
for (var key in tmp_list)
{
Expand Down

0 comments on commit f5e59c0

Please sign in to comment.