mirror of
https://github.com/ncarlier/webhookd.git
synced 2025-04-06 12:15:01 +00:00
fix(): improve configflag stability
This commit is contained in:
parent
40220077d2
commit
3044b3951b
|
@ -17,6 +17,9 @@ func newArrayFlags(items *[]string) *arrayFlags {
|
|||
|
||||
// Values return the values of a flag array
|
||||
func (i *arrayFlags) Values() []string {
|
||||
if i.items == nil {
|
||||
return []string{}
|
||||
}
|
||||
return *i.items
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user