From 78f396129f0ddadc1a8df505a7ffff8d2c42684c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=88=98=E7=A5=A5=E8=B6=85?= Date: Sun, 26 Nov 2023 20:16:13 +0800 Subject: [PATCH] =?UTF-8?q?=E9=98=BF=E9=87=8C=E4=BA=91=E7=BA=BF=E8=B7=AF?= =?UTF-8?q?=E6=98=BE=E7=A4=BA=E5=AE=8C=E6=95=B4=E7=9A=84=E7=BA=BF=E8=B7=AF?= =?UTF-8?q?=E5=90=8D=E7=A7=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- internal/dnsclients/provider_alidns.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/dnsclients/provider_alidns.go b/internal/dnsclients/provider_alidns.go index d808e2f7..d13d1836 100644 --- a/internal/dnsclients/provider_alidns.go +++ b/internal/dnsclients/provider_alidns.go @@ -128,7 +128,7 @@ func (this *AliDNSProvider) GetRoutes(domain string) (routes []*dnstypes.Route, } for _, line := range resp.RecordLines.RecordLine { routes = append(routes, &dnstypes.Route{ - Name: line.LineName, + Name: line.LineDisplayName, Code: line.LineCode, }) }