diff --git a/flag_timestamp.go b/flag_timestamp.go index 80e1f470be..16f42dd011 100644 --- a/flag_timestamp.go +++ b/flag_timestamp.go @@ -90,7 +90,7 @@ func (f *TimestampFlag) GetCategory() string { // GetValue returns the flags value as string representation and an empty // string if the flag takes no value at all. func (f *TimestampFlag) GetValue() string { - if f.Value != nil { + if f.Value != nil && f.Value.timestamp != nil { return f.Value.timestamp.String() } return ""