Skip to content

Commit

Permalink
Fixed #591
Browse files Browse the repository at this point in the history
  • Loading branch information
Reinhard-Pilz-Dynatrace committed Nov 18, 2024
1 parent 3c994eb commit fb65b4a
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions dynatrace/api/automation/workflows/settings/varint.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ func (me *VarInt) UnmarshalJSON(data []byte) error {
var s string
if err := json.Unmarshal(data, &s); err == nil {
*me = VarInt(s)
return nil
}
var i int
if err := json.Unmarshal(data, &i); err != nil {
Expand Down

0 comments on commit fb65b4a

Please sign in to comment.