From 6845d266f29b50f36f32002cfa8b73634c30a5b4 Mon Sep 17 00:00:00 2001 From: Hemna Date: Mon, 8 Apr 2024 11:04:23 -0400 Subject: [PATCH] changed admin web_ip to StrOpt The option was an IPOpt, which prevented the user from setting the ip to a hostname --- aprsd/conf/common.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aprsd/conf/common.py b/aprsd/conf/common.py index 9309d24..2a119b5 100644 --- a/aprsd/conf/common.py +++ b/aprsd/conf/common.py @@ -142,7 +142,7 @@ admin_opts = [ default=False, help="Enable the Admin Web Interface", ), - cfg.IPOpt( + cfg.StrOpt( "web_ip", default="0.0.0.0", help="The ip address to listen on", @@ -187,7 +187,7 @@ enabled_plugins_opts = [ ] webchat_opts = [ - cfg.IPOpt( + cfg.StrOpt( "web_ip", default="0.0.0.0", help="The ip address to listen on",