Skip to content

Commit 3161f5f

Browse files
committed
Fix for network 'pin' conflicts.
1 parent 5784092 commit 3161f5f

File tree

2 files changed

+25
-26
lines changed

2 files changed

+25
-26
lines changed

wled00/data/settings_leds.htm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
if (n2.substring(0,1)==="L") {
5656
var m = LCs[j].name.substring(2);
5757
var t2 = parseInt(d.getElementsByName("LT"+m)[0].value, 10);
58-
if (t2<16) continue;
58+
if (t2>=80) continue;
5959
}
6060
if (LCs[j].value!="" && LCs[i].value==LCs[j].value) {alert(`Pin conflict between ${LCs[i].name}/${LCs[j].name}!`);LCs[j].value="";LCs[j].focus();return false;}
6161
}

0 commit comments

Comments
 (0)