Fixed typo in unban branch

This commit is contained in:
2026-02-13 00:44:01 +01:00
parent 322ee99666
commit c6e5182ef3

View File

@@ -59,7 +59,7 @@ function check_ban_list() {
if (age > max_ban_time) {
ban_map.delete(entry.ip);
console.log(new Date().toISOString(), 'UNBAN', entry.ip);
sudo([unban_script, network_interface, ip]);
sudo([unban_script, network_interface, entry.ip]);
}
}
}