Skip to content

Commit 2a0d5ff

Browse files
committed
Add "freifunk.net", do not differentiate between Freifunk networks with
same SSID
1 parent 8a94de4 commit 2a0d5ff

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

app/src/main/assets/ssids.csv

+2-1
Original file line numberDiff line numberDiff line change
@@ -96,4 +96,5 @@
9696
"westpfalz.freifunk.net 5GHz"
9797
"wipp.freifunk.net"
9898
"wk.freifunk.net"
99-
"nordwest.freifunk.net"
99+
"nordwest.freifunk.net"
100+
"freifunk.net"

app/src/main/java/com/example/tobiastrumm/freifunkautoconnect/NotificationService.java

+4-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,10 @@ public void onReceive(Context context, Intent intent) {
6363
for(ScanResult r: results){
6464
Network compareWith = new Network('"' + r.SSID + '"');
6565
if(networks.contains(compareWith)){
66-
foundNetworks.add(compareWith);
66+
if(!foundNetworks.contains(compareWith)){
67+
foundNetworks.add(compareWith);
68+
}
69+
6770
}
6871
}
6972

0 commit comments

Comments
 (0)