mirror of
https://github.com/home-assistant/core.git
synced 2025-07-19 03:07:37 +00:00
Fix rest notify GET without params configured (#44723)
This commit is contained in:
parent
5e0eea21d4
commit
681f76b99d
@ -197,7 +197,7 @@ class RestNotificationService(BaseNotificationService):
|
|||||||
response = requests.get(
|
response = requests.get(
|
||||||
self._resource,
|
self._resource,
|
||||||
headers=self._headers,
|
headers=self._headers,
|
||||||
params=self._params.update(data),
|
params={**self._params, **data} if self._params else data,
|
||||||
timeout=10,
|
timeout=10,
|
||||||
auth=self._auth,
|
auth=self._auth,
|
||||||
verify=self._verify_ssl,
|
verify=self._verify_ssl,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user