Default the OP25 HTTP server to enabled, caused issues with the shell with it disabled.

Need to look into perhaps using the `shell=True` parameter
This commit is contained in:
Logan Cusano
2022-03-17 00:12:15 -04:00
parent 830d299a01
commit 56a3bdd0ea

View File

@@ -18,7 +18,7 @@ class OP25Handler: #(threading.Thread):
def start(self) -> None:
self.open_op25()
def set_op25_parameters(self, _frequency, _http_enabled: bool = False):
def set_op25_parameters(self, _frequency, _http_enabled: bool = True):
self.Frequency = _frequency
self.HTTP_ENABLED = _http_enabled