Skip to content

Commit

Permalink
Quick fix for issue #195
Browse files Browse the repository at this point in the history
There was a small typo that could cause a nil derefrence.
  • Loading branch information
gdey committed Dec 2, 2017
1 parent a7f2e6e commit a3f43cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mvt/layer.go
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ FEATURES_LOOP:
continue
}
for _, cf := range l.features {
if cf.ID != nil {
if cf.ID == nil {
continue
}
// We matched, we skip
Expand Down

0 comments on commit a3f43cf

Please sign in to comment.