Skip to content

Commit 0989932

Browse files
authored
allow ".bin.gz" filter in updater file selector (#7026)
1 parent baf223c commit 0989932

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

libraries/ESP8266HTTPUpdateServer/src/ESP8266HTTPUpdateServer-impl.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@ static const char serverIndex[] PROGMEM =
2121
<body>
2222
<form method='POST' action='' enctype='multipart/form-data'>
2323
Firmware:<br>
24-
<input type='file' accept='.bin' name='firmware'>
24+
<input type='file' accept='.bin,.bin.gz' name='firmware'>
2525
<input type='submit' value='Update Firmware'>
2626
</form>
2727
<form method='POST' action='' enctype='multipart/form-data'>
2828
FileSystem:<br>
29-
<input type='file' accept='.bin' name='filesystem'>
29+
<input type='file' accept='.bin,.bin.gz' name='filesystem'>
3030
<input type='submit' value='Update FileSystem'>
3131
</form>
3232
</body>

0 commit comments

Comments
 (0)