From 26cb33910c7d1f5dbb1ab5f2de18fc3f3d07c0f7 Mon Sep 17 00:00:00 2001 From: Simon Date: Mon, 6 Feb 2023 13:58:44 +0000 Subject: [PATCH] Fix bad report_clients setting in config defaults --- FreeDMR-MINIMAL.cfg | 1 + config.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/FreeDMR-MINIMAL.cfg b/FreeDMR-MINIMAL.cfg index 0f7a827..ea46f37 100755 --- a/FreeDMR-MINIMAL.cfg +++ b/FreeDMR-MINIMAL.cfg @@ -4,6 +4,7 @@ [GLOBAL] SERVER_ID: 0000 +DEBUG_BRIDGES: True [REPORTS] diff --git a/config.py b/config.py index 2e51569..f845177 100755 --- a/config.py +++ b/config.py @@ -159,7 +159,7 @@ def build_config(_config_file): 'REPORT': config.getboolean(section, 'REPORT', fallback=True), 'REPORT_INTERVAL': config.getint(section, 'REPORT_INTERVAL', fallback=60), 'REPORT_PORT': config.getint(section, 'REPORT_PORT', fallback=4321), - 'REPORT_CLIENTS': config.get(section, 'REPORT_CLIENTS',fallback='127.0.0.1').split(',') + 'REPORT_CLIENTS': config.get(section, 'REPORT_CLIENTS',fallback='*').split(',') }) elif section == 'LOGGER':