From 9a4c55610b50c817f9bf3b9018d2ccf2dd04a63f Mon Sep 17 00:00:00 2001 From: Andrew Fiddian-Green Date: Sun, 7 Jan 2024 11:24:27 +0000 Subject: [PATCH] [tellstick] Adopt new API url (#16220) Signed-off-by: Andrew Fiddian-Green --- .../tellstick/internal/live/TelldusLiveDeviceController.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bundles/org.openhab.binding.tellstick/src/main/java/org/openhab/binding/tellstick/internal/live/TelldusLiveDeviceController.java b/bundles/org.openhab.binding.tellstick/src/main/java/org/openhab/binding/tellstick/internal/live/TelldusLiveDeviceController.java index 3b8d875efa..44a16abb65 100644 --- a/bundles/org.openhab.binding.tellstick/src/main/java/org/openhab/binding/tellstick/internal/live/TelldusLiveDeviceController.java +++ b/bundles/org.openhab.binding.tellstick/src/main/java/org/openhab/binding/tellstick/internal/live/TelldusLiveDeviceController.java @@ -71,7 +71,7 @@ public class TelldusLiveDeviceController implements DeviceChangeListener, Sensor public static final long DEFAULT_INTERVAL_BETWEEN_SEND = 250; private static final int REQUEST_TIMEOUT_MS = 15000; private AsyncHttpClient client; - static final String HTTP_API_TELLDUS_COM_XML = "http://api.telldus.com/xml/"; + static final String HTTP_API_TELLDUS_COM_XML = "http://pa-api.telldus.com/xml/"; static final String HTTP_TELLDUS_CLIENTS = HTTP_API_TELLDUS_COM_XML + "clients/list"; static final String HTTP_TELLDUS_DEVICES = HTTP_API_TELLDUS_COM_XML + "devices/list?supportedMethods=19"; static final String HTTP_TELLDUS_SENSORS = HTTP_API_TELLDUS_COM_XML -- 2.47.3