Skip to content
Snippets Groups Projects
Commit 2e869200 authored by Md. Alim Ul Karim's avatar Md. Alim Ul Karim :speech_balloon:
Browse files

v0.9.9

v0.9.9
parent b54554a2
No related branches found
No related tags found
No related merge requests found
......@@ -138,7 +138,7 @@ func (it *Result) String() string {
}
func (it *Result) SafeNonIssueBytes() []byte {
if it.HasSafeItems() {
if it.IsAnyNull() || it.HasError() {
return []byte{}
}
......@@ -146,7 +146,7 @@ func (it *Result) SafeNonIssueBytes() []byte {
}
func (it *Result) SafeBytes() []byte {
if it.Bytes == nil {
if it.IsAnyNull() {
return []byte{}
}
......@@ -154,7 +154,7 @@ func (it *Result) SafeBytes() []byte {
}
func (it *Result) SafeValues() []byte {
if it.Bytes == nil {
if it.IsAnyNull() {
return []byte{}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment