fix homeassitant api endpoint
CI / build (push) Successful in 9s
CI / lint (push) Successful in 9s
CI / create-and-publish-docker-image (push) Successful in 11s

This commit is contained in:
2026-06-27 23:02:39 +02:00
parent f9f1757ec0
commit 2a56faa1d1
+2 -2
View File
@@ -7,7 +7,7 @@ async function fetchTentHumidity() {
return; return;
} }
const url = `https://home.rivercry.com/api/states/sensor.third_reality_inc_3rths0224z_luftfeuchtigkeit_2`; const url = `https://home.rivercry.com/api/states/sensor.zelt_humidity`;
const response = await fetch(url, { const response = await fetch(url, {
method: "GET", method: "GET",
headers: { headers: {
@@ -26,7 +26,7 @@ async function fetchTentTemperature() {
return; return;
} }
const url = `https://home.rivercry.com/api/states/sensor.third_reality_inc_3rths0224z_temperatur_2`; const url = `https://home.rivercry.com/api/states/sensor.zelt_temperature`;
const response = await fetch(url, { const response = await fetch(url, {
method: "GET", method: "GET",
headers: { headers: {