We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 766cfec + c052ba6 commit 105e63fCopy full SHA for 105e63f
1 file changed
writer.go
@@ -75,7 +75,8 @@ func (entry *Entry) writerScanner(reader *io.PipeReader, printFunc func(args ...
75
if len(data) > chunkSize {
76
return chunkSize, data[:chunkSize], nil
77
}
78
- return 0, nil, nil
+
79
+ return len(data), data, nil
80
81
82
//Use the custom split function to split the input
0 commit comments