You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix specific record types not being parsed correctly (#17)
* Fix specific record types not being parsed correctly
This change specifically applies to MX and SRV records as all other
record types got parsed correctly already.
Some of Cloudflare's API responses for specific record types do not
include the raw DNS record content in the `Content` field. For example,
`MX` records would have a content of `example.com` instead of
`<PRIORITY> example.com`, making them unable to be properly parsed.
To solve this, we use the structured record data already provided to us
by Cloudflare's API wherever it makes sense, and fallback to the libdns
parsing when it makes sense.
Signed-off-by: Matthew Penner <[email protected]>
* Remove leftover `GOT RECORDS` debug log
Signed-off-by: Matthew Penner <[email protected]>
---------
Signed-off-by: Matthew Penner <[email protected]>
0 commit comments