Skip to content

Commit

Permalink
Merge pull request #42 from ossimlabs/omar-168
Browse files Browse the repository at this point in the history
Added fix for improper call to count with rong variable
  • Loading branch information
gpotts authored Jun 18, 2018
2 parents 9ae422a + 1337b19 commit 15bdae3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -480,7 +480,7 @@ class GeoscriptService implements InitializingBean
if ( featureFormat == 'CSV' ) {
def csvResult = exportCSV(layer, options)
features = csvResult?.data
count = features.count
count = csvResult.count
} else {
features = layer?.collectFromFeature(options) { feature ->
++count;
Expand Down

0 comments on commit 15bdae3

Please sign in to comment.