network: Fix selection when no networks are specified.

This commit is contained in:
tecnovert
2025-08-05 13:29:56 +02:00
parent aa26111665
commit cd147da7dd
3 changed files with 24 additions and 14 deletions

View File

@@ -76,6 +76,7 @@ class BaseApp(DBMethods):
self._enabled_log_categories = set()
for category in self.settings.get("enabled_log_categories", []):
category = category.lower()
if category == "net":
self._enabled_log_categories.add(LC.NET)
else: