fix: code review batch 2 — multi-channel, thread safety, DSP reset, MIDI, hotspot, NAM, docs/CI, code quality
CI / test (push) Has been cancelled

This commit is contained in:
2026-06-17 22:38:24 -04:00
parent c65e4816c4
commit 2558306e78
23 changed files with 631 additions and 125 deletions
+1 -1
View File
@@ -1444,7 +1444,7 @@ function SettingsScreen({ state, connected, refresh }) {
const active = state?.wifi?.hotspot_active;
try {
if (active) await apiPost('/api/wifi/hotspot/disable');
else await apiPost('/api/wifi/hotspot/enable', { ssid: 'Pi-Pedal', password: 'pedal1234' });
else await apiPost('/api/wifi/hotspot/enable', { ssid: 'Pi-Pedal' });
setTimeout(refresh, 2000);
} catch (e) { /* ignore */ }
};