summaryrefslogtreecommitdiff
path: root/bucket-lines/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'bucket-lines/main.go')
-rw-r--r--bucket-lines/main.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/bucket-lines/main.go b/bucket-lines/main.go
index 6ae506a..af81b44 100644
--- a/bucket-lines/main.go
+++ b/bucket-lines/main.go
@@ -74,7 +74,9 @@ func main() {
}
for _, l := range newlines {
- lines = append(lines, l)
+ if l.Img != nil {
+ lines = append(lines, l)
+ }
}
}