Merge branch 'main' into v3.0.0-release

This commit is contained in:
Jaspreet Sachdev
2023-12-20 13:26:46 -05:00
3 changed files with 2 additions and 2 deletions

View File

@@ -88,7 +88,7 @@ handlers = {
ssid: hapd.ssid,
bssid: hapd.bssid,
});
if (ratelimit && !wildcard(notify.data.ifname, 'wlanc*')) {
if (ratelimit) {
let msg = {
device: hapd.ifname,
address: notify.data.address,
@@ -103,7 +103,7 @@ handlers = {
},
disassoc: function(notify, hapd) {
if (ratelimit && !wildcard(notify.data.ifname, 'wlanc*')) {
if (ratelimit) {
let msg = {
address: notify.data.address,
};