Skip to content

Commit 8500249

Browse files
committed
v0.9.001
1 parent 834decd commit 8500249

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -222,6 +222,9 @@ Work is in progress...
222222

223223
---
224224
## Version history
225+
#### v0.9.001
226+
- fixed compilation error netserver.cpp:63:28 for some configurations
227+
225228
#### v0.9.000
226229
- added WEB Board Uploader. ESP32 Filesystem Uploader is no longer needed, the initial setup can be done in the browser. (see [wiki](https://github.com/e2002/yoradio/wiki/WEB-Board-Uploader) for more info)
227230
- fixed error getting weather for some locations

yoRadio/src/core/netserver.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ bool NetServer::begin() {
6060
if(request->arg("ssid")!="" && request->arg("pass")!=""){
6161
char buf[BUFLEN];
6262
memset(buf, 0, BUFLEN);
63-
snprintf(buf, BUFLEN, "%s\t%s", request->arg("ssid"), request->arg("pass"));
63+
snprintf(buf, BUFLEN, "%s\t%s", request->arg("ssid").c_str(), request->arg("pass").c_str());
6464
request->redirect("/");
6565
config.saveWifiFromNextion(buf);
6666
return;

yoRadio/src/core/options.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#ifndef options_h
22
#define options_h
33

4-
#define YOVERSION "0.9.000"
4+
#define YOVERSION "0.9.001"
55

66
/*******************************************************
77
DO NOT EDIT THIS FILE.

0 commit comments

Comments
 (0)