Skip to content

Commit a193e09

Browse files
committed
Fix race condition between things and properties initialization
1 parent c3326a1 commit a193e09

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

arduino-iot-cloud.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@
216216
let queryString = prepareQueryString(connection);
217217
if (!queryString || queryString === "")
218218
return;
219-
if (!thing_id || thing_id === "" || thing_id === "0")
219+
if (!thing_id || thing_id === "" || thing_id === "0" || thing_id === "updating")
220220
return;
221221
queryString = `${queryString}&thing_id=${thing_id}`;
222222

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)