We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 729d640 commit 8572ff1Copy full SHA for 8572ff1
octoprint_simplyprint/websocket/simplyprint.py
@@ -1424,7 +1424,7 @@ def send_sp(
1424
1425
# Include tracked job_id with some message types.
1426
if evt_name in ("file_progress", "job_info") and self._current_job_id is not None and isinstance(data, dict):
1427
- data.update({"job_id", self._current_job_id})
+ data.update({"job_id": self._current_job_id})
1428
1429
packet = {"type": evt_name, "data": data}
1430
if evt_name != "stream":
0 commit comments