From 56a3bdd0eabf17e4097e0f1282a6bef7c4750542 Mon Sep 17 00:00:00 2001 From: Logan Cusano Date: Thu, 17 Mar 2022 00:12:15 -0400 Subject: [PATCH] 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 --- op25Handler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/op25Handler.py b/op25Handler.py index a1ab84b..8c70866 100644 --- a/op25Handler.py +++ b/op25Handler.py @@ -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