We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9be2b61 + 6b56e09 commit 2011532Copy full SHA for 2011532
pkg/config/record.go
@@ -30,6 +30,10 @@ func (r Record) GetData() string {
30
}
31
32
func (r Record) GetPriority() string {
33
+ if r.Priority == 0 {
34
+ return ""
35
+ }
36
+
37
return fmt.Sprint(r.Priority)
38
39
pkg/providers/porkbun/record/record.go
@@ -29,6 +29,10 @@ func (r Record) GetData() string {
29
+ if r.Priority == "0" {
return r.Priority
0 commit comments