diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml new file mode 100644 index 0000000..645def0 --- /dev/null +++ b/.github/FUNDING.yml @@ -0,0 +1,12 @@ +# These are supported funding model platforms + +github: spacehuhn +patreon: spacehuhn +open_collective: # Replace with a single Open Collective username +ko_fi: # Replace with a single Ko-fi username +tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel +community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry +liberapay: spacehuhn +issuehunt: # Replace with a single IssueHunt username +otechie: # Replace with a single Otechie username +custom: ['paypal.me/spacechicken','tindie.com/stores/Spacehuhn/'] diff --git a/esp8266_deauther/Stations.cpp b/esp8266_deauther/Stations.cpp index aad6c45..a6bcc02 100644 --- a/esp8266_deauther/Stations.cpp +++ b/esp8266_deauther/Stations.cpp @@ -254,9 +254,10 @@ void Stations::deselect(int num) { void Stations::remove(int num) { if (!check(num)) return; - internal_remove(num); prnt(ST_REMOVED_STATION); prntln(num); + + internal_remove(num); changed = true; } @@ -364,4 +365,4 @@ void Stations::internal_removeAll() { free(getTime(i)); } list->clear(); -} \ No newline at end of file +}