From bc5aa1141a5342e926191e51c4e45fd80c49dd27 Mon Sep 17 00:00:00 2001 From: Nicolas Mowen Date: Tue, 3 Jan 2023 18:24:53 -0700 Subject: [PATCH] Set host as blank by default (#4880) --- frigate/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frigate/config.py b/frigate/config.py index 1dc59c30f..66712406f 100644 --- a/frigate/config.py +++ b/frigate/config.py @@ -66,7 +66,7 @@ class UIConfig(FrigateBaseModel): class MqttConfig(FrigateBaseModel): enabled: bool = Field(title="Enable MQTT Communication.", default=True) - host: str = Field(title="MQTT Host") + host: str = Field(default="", title="MQTT Host") port: int = Field(default=1883, title="MQTT Port") topic_prefix: str = Field(default="frigate", title="MQTT Topic Prefix") client_id: str = Field(default="frigate", title="MQTT Client ID")