You've already forked directdnsonly
Remove dead legacy CMD_API_SHOW_ALL_DOMAINS parser #5
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
_parse_da_domain_listinapp/reconciler.pyparses the old URL-encodedlist[]=domain.com&...format fromCMD_API_SHOW_ALL_DOMAINS. This endpoint is no longer used — the reconciler now callsCMD_DNS_ADMIN?json=yeswhich always returns JSON.The method is only reachable via a JSON decode exception fallback, which is unreachable in practice.
Action:
_parse_da_domain_listfrom urllib.parse import parse_qsimportexceptblock with a hard error (returnNone, skip server)Prerequisite: Confirm no other callers in the codebase before removing.