From 2940e7c5fb5790e37f7d956990963afe7625d38e Mon Sep 17 00:00:00 2001 From: xeals Date: Sat, 22 Feb 2025 15:20:48 +1100 Subject: [PATCH] porkbun-ddns: update APIBASE Sometime recently Porkbun changed their basename. > Please note that porkbun.com is no longer supported as the hostname for our API. Please use api.porkbun.com as the correct hostname moving forward. --- pkgs/by-name/po/porkbun-ddns/porkbun-ddns.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/by-name/po/porkbun-ddns/porkbun-ddns.py b/pkgs/by-name/po/porkbun-ddns/porkbun-ddns.py index a343562..fa55914 100644 --- a/pkgs/by-name/po/porkbun-ddns/porkbun-ddns.py +++ b/pkgs/by-name/po/porkbun-ddns/porkbun-ddns.py @@ -9,7 +9,7 @@ from dataclasses import dataclass, fields as datafields from enum import Enum, unique from typing import List, Optional -APIBASE = "https://porkbun.com/api/json/v3/dns" +APIBASE = "https://api.porkbun.com/api/json/v3/dns" def dataclass_from_dict(klass: object, d: dict):