Skip to content

Commit

Permalink
Include ipversion in string representation of Strato Provider
Browse files Browse the repository at this point in the history
  • Loading branch information
felixwrt committed Aug 3, 2023
1 parent 7b3b660 commit fc8e3f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/provider/providers/strato/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ func (p *Provider) isValid() error {
}

func (p *Provider) String() string {
return fmt.Sprintf("[domain: %s | host: %s | provider: Strato]", p.domain, p.host)
return utils.ToString(p.domain, p.host, constants.Strato, p.ipVersion)
}

func (p *Provider) Domain() string {
Expand Down

0 comments on commit fc8e3f9

Please sign in to comment.