fix(ddns): handle second-level domain correctly (#438)

This commit is contained in:
UUBulb
2024-10-18 12:26:43 +08:00
committed by GitHub
parent be7b6e9c5e
commit fc9f1b6bcc
2 changed files with 6 additions and 1 deletions

View File

@@ -27,6 +27,11 @@ func TestSplitDomainSOA(t *testing.T) {
zone: "example.com.",
prefix: "abc",
},
{
domain: "example.com",
zone: "example.com.",
prefix: "",
},
}
for _, c := range cases {