From 6d388fe7aec1b187f2e962ae8c9f9c785f8779f1 Mon Sep 17 00:00:00 2001 From: cheetah Date: Sat, 5 Apr 2025 01:41:41 +0200 Subject: [PATCH] https -> http --- src/dwd.cpp | 2 +- src/mowas.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/dwd.cpp b/src/dwd.cpp index be6959a..fe29dd2 100644 --- a/src/dwd.cpp +++ b/src/dwd.cpp @@ -11,7 +11,7 @@ DWDClient::DWDClient(WiFiClient *client) void DWDClient::begin(int intervalMinutes, String region) { - this->rssUrl = "https://wettwarn.de/rss/"; + this->rssUrl = "http://wettwarn.de/rss/"; this->rssUrl.concat(region); this->rssUrl.concat(".rss"); diff --git a/src/mowas.cpp b/src/mowas.cpp index 665d142..ad9c1f3 100644 --- a/src/mowas.cpp +++ b/src/mowas.cpp @@ -9,7 +9,7 @@ MoWaSClient::MoWaSClient(WiFiClient *client) void MoWaSClient::begin(int intervalMinutes, String region) { - this->dashboardUrl = "https://warnung.bund.de/api31/dashboard/"; + this->dashboardUrl = "http://warnung.bund.de/api31/dashboard/"; this->dashboardUrl.concat(region); this->dashboardUrl.concat(".json");