Compare commits
No commits in common. "2d8aec515db7597a21728fdbda906e1081543827" and "d9ae829503ce914341fe3d43210aff91fee7a7e9" have entirely different histories.
2d8aec515d
...
d9ae829503
@ -1,13 +1,5 @@
|
||||
# Changelog
|
||||
|
||||
## [1.3.94] - 2025-02-24
|
||||
### Changed
|
||||
- update webpages for version v1.3.94
|
||||
|
||||
### Fixed
|
||||
- correct payload type check in NFC write event handling
|
||||
|
||||
|
||||
## [1.3.93] - 2025-02-24
|
||||
### Added
|
||||
- implement auto send feature for Bambu spool management and update related configurations
|
||||
|
@ -9,7 +9,7 @@
|
||||
; https://docs.platformio.org/page/projectconf.html
|
||||
|
||||
[common]
|
||||
version = "1.3.94"
|
||||
version = "1.3.93"
|
||||
##
|
||||
[env:esp32dev]
|
||||
platform = espressif32
|
||||
|
@ -96,7 +96,7 @@ void onWsEvent(AsyncWebSocket *server, AsyncWebSocketClient *client, AwsEventTyp
|
||||
}
|
||||
|
||||
else if (doc["type"] == "writeNfcTag") {
|
||||
if (doc["payload"].is<JsonObject>()) {
|
||||
if (doc["payload"].is<String>()) {
|
||||
// Versuche NFC-Daten zu schreiben
|
||||
String payloadString;
|
||||
serializeJson(doc["payload"], payloadString);
|
||||
|
Loading…
x
Reference in New Issue
Block a user