Skip to content

Commit 7e0fe2e

Browse files
committed
Fix bug in protocol and version for url
1 parent f3ddb6d commit 7e0fe2e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

firmware/conf.d/pn532_rfid-solo.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -258,8 +258,8 @@ button:
258258
url += "&min_temp=" + std::to_string(static_cast<int>(id(filament_min_temp).state));
259259
url += "&max_temp=" + std::to_string(static_cast<int>(id(filament_max_temp).state));
260260
url += "&brand=" + std::string(id(filament_brand).state);
261-
url += "protocol" + std::string("openspool");
262-
url += "version" + std::string("1.0");
261+
url += "&protocol" + std::string("openspool");
262+
url += "&version" + std::string("1.0");
263263
ESP_LOGI("rfid", "NDEF Record URL: %s", url.c_str());
264264
message->add_uri_record(url);
265265

0 commit comments

Comments
 (0)