increase ipLocationRequestLimitor to 1000 per day
Signed-off-by: si458 <simonsmith5521@gmail.com>
si458 committed
Jan 24, 2026 at 18:20 UTC
4923c71742552178b506f9926a40582651367a11
1 file changed
+1
-1
meshagent.js
+1
-1
@@ -1087,7 +1087,7 @@ module.exports.CreateMeshAgent = function (parent, db, ws, req, args, domain) {
1087
1088
// If we need to ask for IP location, see if we have the quota to do it.
1089
if (doIpLocation > 0) {
1090
- db.getValueOfTheDay('ipLocationRequestLimitor', 10, function (ipLocationLimitor) {
1090
+ db.getValueOfTheDay('ipLocationRequestLimitor', 1000, function (ipLocationLimitor) {
1091
if ((ipLocationLimitor != null) && (ipLocationLimitor.value > 0)) {
1092
ipLocationLimitor.value--;
1093
db.Set(ipLocationLimitor);