From 8b17a9e6c1defae3218ac67066757dc847f8718a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timoth=C3=A9e=20Jaussoin?= Date: Thu, 24 Aug 2023 14:35:29 +0200 Subject: [PATCH] Fix #116 Fix Change SMS endpoint --- flexiapi/app/Libraries/OvhSMS.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flexiapi/app/Libraries/OvhSMS.php b/flexiapi/app/Libraries/OvhSMS.php index 0e4188b..2646644 100644 --- a/flexiapi/app/Libraries/OvhSMS.php +++ b/flexiapi/app/Libraries/OvhSMS.php @@ -41,7 +41,7 @@ class OvhSMS ); try { - $smsServices = $this->api->get('/sms/'); + $smsServices = $this->api->get('/sms'); if (!empty($smsServices)) { $this->smsService = $smsServices[0];