Skip to content

Commit 250a509

Browse files
committed
🐛 Don't return 0 if successful packet sent with QoS 0
1 parent d7bb445 commit 250a509

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

docs/2.-API-reference.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ Return the packet ID or 0 if failed.
135135

136136
Publish a packet.
137137

138-
Return the packet ID or 0 if failed.
138+
Return the packet ID (or 1 if QoS 0) or 0 if failed.
139139

140140
* **`topic`**: Topic
141141
* **`qos`**: QoS

src/AsyncMqttClient.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -712,5 +712,6 @@ uint16_t AsyncMqttClient::publish(const char* topic, uint8_t qos, bool retain, c
712712
_client.send();
713713
_lastClientActivity = millis();
714714

715-
return packetId;
715+
if (qos != 0) return packetId;
716+
else return 1;
716717
}

0 commit comments

Comments
 (0)