Skip to content

Commit

Permalink
Fix esphome-web firmware file url
Browse files Browse the repository at this point in the history
  • Loading branch information
jesserockz committed Jun 20, 2024
1 parent 9ecb04c commit 624bfaa
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ class ESPHomeInstallAdoptableDialog extends LitElement {
}
const platformLower = platform.toLowerCase();
const resp = await fetch(
`https://firmware.esphome.io/esphome-web/${platformLower}/esphome-web-${platformLower}.bin`,
`https://firmware.esphome.io/esphome-web/${platformLower}/esphome-web-${platformLower}.factory.bin`,
);
if (!resp.ok) {
throw new Error(
Expand Down

0 comments on commit 624bfaa

Please sign in to comment.