From 3449a78d53716a97f68030b06bca03f8367cd806 Mon Sep 17 00:00:00 2001 From: Skylar Ittner Date: Tue, 16 May 2023 10:43:49 -0600 Subject: [PATCH] Fix Helena Express tracking API URL --- lib/Tracking_HelenaExpress.lib.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Tracking_HelenaExpress.lib.php b/lib/Tracking_HelenaExpress.lib.php index 22e9808..a0b2760 100644 --- a/lib/Tracking_HelenaExpress.lib.php +++ b/lib/Tracking_HelenaExpress.lib.php @@ -15,7 +15,7 @@ class Tracking_HelenaExpress { $barcode = new TrackingBarcode($code); try { - $status = json_decode(file_get_contents("https://helena.express/apis/track/?code=" . $barcode->getCode())); + $status = json_decode(file_get_contents("https://apis.helena.express/v1/track/?code=" . $barcode->getCode())); } catch (Exception $ex) { throw new TrackingException("There was a server problem. This code cannot be tracked right now."); }