From 59def70cd995cdd23950ef1a26f5d823d5f76dc7 Mon Sep 17 00:00:00 2001 From: Patrick Lenz <502+scoop@users.noreply.github.com> Date: Sat, 15 Jun 2024 14:44:13 +0200 Subject: [PATCH] Skip cert verification on POST requests as well --- .../waste_collection_schedule/source/awn_de.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/custom_components/waste_collection_schedule/waste_collection_schedule/source/awn_de.py b/custom_components/waste_collection_schedule/waste_collection_schedule/source/awn_de.py index 74ce0705c..abc371cbb 100644 --- a/custom_components/waste_collection_schedule/waste_collection_schedule/source/awn_de.py +++ b/custom_components/waste_collection_schedule/waste_collection_schedule/source/awn_de.py @@ -89,6 +89,7 @@ def fetch(self): r = session.post( SERVLET, data=args, + verify=False, ) r.raise_for_status() @@ -106,6 +107,7 @@ def fetch(self): r = session.post( SERVLET, data=args, + verify=False, ) r.raise_for_status() @@ -114,6 +116,7 @@ def fetch(self): r = session.post( SERVLET, data=args, + verify=False, ) r.raise_for_status()