summaryrefslogtreecommitdiff
path: root/modules/proxyscan.cpp
diff options
context:
space:
mode:
authorSadie Powell <sadie@witchery.services>2025-03-05 16:21:04 +0000
committerSadie Powell <sadie@witchery.services>2025-03-05 16:25:17 +0000
commit9926ac5a05ba741690f51a3265f2523a9e43a5c7 (patch)
tree78fbabb9f4813f7e3f7d675a4f9f43c37959d2a3 /modules/proxyscan.cpp
parent14342f6375cce455ddde79cb9403daea6a727b7f (diff)
Fix reading the config of some modules.
Diffstat (limited to 'modules/proxyscan.cpp')
-rw-r--r--modules/proxyscan.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/proxyscan.cpp b/modules/proxyscan.cpp
index 53b94e696..8b814ec0a 100644
--- a/modules/proxyscan.cpp
+++ b/modules/proxyscan.cpp
@@ -302,7 +302,7 @@ public:
}
this->proxyscans.clear();
- for (int i = 0; i < Config->CountBlock("proxyscan"); ++i)
+ for (int i = 0; i < config.CountBlock("proxyscan"); ++i)
{
Configuration::Block &block = config.GetBlock("proxyscan", i);
ProxyCheck p;