Disabled SSL certificate validation for Ntfy

This commit is contained in:
Ashish D'Souza 2024-02-18 10:54:44 -06:00
parent c7e07f309d
commit b3a2076416
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ class NtfyNotifier:
async def send_notification(self, camera: str, status: bool) -> None:
logger.debug(f'Sending notification for {camera=}...')
message = f'{camera} is back online' if status else f'{camera} is offline'
await self._aiohttp_session.post(self._ntfy_url, json={
await self._aiohttp_session.post(self._ntfy_url, ssl=False, json={
'topic': 'frigate_camera_uptime',
'title': 'Frigate',
'message': message,