v0.0.293 fix NPE
All checks were successful
Build Docker and Deploy / Run goext test-suite (push) Successful in 1m52s
All checks were successful
Build Docker and Deploy / Run goext test-suite (push) Successful in 1m52s
This commit is contained in:
parent
19ee5019ef
commit
ab1a1ab6f6
@ -275,7 +275,7 @@ func (b *Builder) Any(key string, val any) *Builder {
|
||||
}
|
||||
|
||||
func (b *Builder) Stringer(key string, val fmt.Stringer) *Builder {
|
||||
if val == nil {
|
||||
if langext.IsNil(val) {
|
||||
return b.addMeta(key, MDTString, "(!nil)")
|
||||
} else {
|
||||
return b.addMeta(key, MDTString, val.String())
|
||||
|
@ -1,5 +1,5 @@
|
||||
package goext
|
||||
|
||||
const GoextVersion = "0.0.292"
|
||||
const GoextVersion = "0.0.293"
|
||||
|
||||
const GoextVersionTimestamp = "2023-10-30T10:14:38+0100"
|
||||
const GoextVersionTimestamp = "2023-10-30T13:37:31+0100"
|
||||
|
Loading…
Reference in New Issue
Block a user