mirror of
https://github.com/SpacehuhnTech/esp8266_deauther.git
synced 2025-12-21 14:09:59 +01:00
Fixed little SSID list bugs
This commit is contained in:
File diff suppressed because one or more lines are too long
@@ -171,6 +171,7 @@ void loadStationsJS() {
|
||||
sendFile(200, "text/javascript", data_stationsJS, sizeof(data_stationsJS));
|
||||
}
|
||||
void loadAttackJS() {
|
||||
attack.ssidChange = true;
|
||||
sendFile(200, "text/javascript", data_attackJS, sizeof(data_attackJS));
|
||||
}
|
||||
void loadSettingsJS() {
|
||||
|
||||
@@ -82,7 +82,8 @@ function addSSID() {
|
||||
|
||||
function cloneSSID(_ssidName) {
|
||||
ssid.value = _ssidName;
|
||||
num.value = 48 - data.length;
|
||||
if(data.length > 0) num.value = 48 - data.length;
|
||||
else num.value = 48;
|
||||
}
|
||||
|
||||
function deleteSSID(num) {
|
||||
|
||||
Reference in New Issue
Block a user