]> git.basschouten.com Git - openhab-addons.git/commitdiff
[miio] fix Error parsing miot data null for new miot devices (#11658)
authorMarcel <marcel@verpaalen.com>
Mon, 29 Nov 2021 09:57:58 +0000 (10:57 +0100)
committerGitHub <noreply@github.com>
Mon, 29 Nov 2021 09:57:58 +0000 (10:57 +0100)
Signed-off-by: Marcel Verpaalen <marcel@verpaalen.com>
bundles/org.openhab.binding.miio/src/main/java/org/openhab/binding/miio/internal/miot/MiotParser.java

index b5051a819c2862b0b7226f8c38b39bc6280bf57b..cfae463db9d4ba9a8c387681900929a84108d5b2 100644 (file)
@@ -63,7 +63,7 @@ import com.google.gson.JsonParser;
 public class MiotParser {
     private final Logger logger = LoggerFactory.getLogger(MiotParser.class);
 
-    private static final String BASEURL = "http://miot-spec.org/miot-spec-v2/";
+    private static final String BASEURL = "https://miot-spec.org/miot-spec-v2/";
     private static final Gson GSON = new GsonBuilder().setPrettyPrinting().create();
     private static final boolean SKIP_SIID_1 = true;