mirror of
https://github.com/SpacehuhnTech/esp8266_deauther.git
synced 2025-12-21 22:19: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));
|
sendFile(200, "text/javascript", data_stationsJS, sizeof(data_stationsJS));
|
||||||
}
|
}
|
||||||
void loadAttackJS() {
|
void loadAttackJS() {
|
||||||
|
attack.ssidChange = true;
|
||||||
sendFile(200, "text/javascript", data_attackJS, sizeof(data_attackJS));
|
sendFile(200, "text/javascript", data_attackJS, sizeof(data_attackJS));
|
||||||
}
|
}
|
||||||
void loadSettingsJS() {
|
void loadSettingsJS() {
|
||||||
|
|||||||
@@ -82,7 +82,8 @@ function addSSID() {
|
|||||||
|
|
||||||
function cloneSSID(_ssidName) {
|
function cloneSSID(_ssidName) {
|
||||||
ssid.value = _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) {
|
function deleteSSID(num) {
|
||||||
|
|||||||
Reference in New Issue
Block a user