diff options
author | Sadie Powell <sadie@witchery.services> | 2025-03-05 16:21:04 +0000 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2025-03-05 16:25:17 +0000 |
commit | 9926ac5a05ba741690f51a3265f2523a9e43a5c7 (patch) | |
tree | 78fbabb9f4813f7e3f7d675a4f9f43c37959d2a3 /modules/proxyscan.cpp | |
parent | 14342f6375cce455ddde79cb9403daea6a727b7f (diff) |
Fix reading the config of some modules.
Diffstat (limited to 'modules/proxyscan.cpp')
-rw-r--r-- | modules/proxyscan.cpp | 2 |
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; |