From fb2f05781296a9ecbb99ade08508264758bbcf42 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Thu, 21 Mar 2024 13:46:43 +0100 Subject: fixup! Implement MPuback::write --- mqtt-format/src/v5/packets/puback.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mqtt-format/src/v5/packets/puback.rs b/mqtt-format/src/v5/packets/puback.rs index 15279be..39a53cf 100644 --- a/mqtt-format/src/v5/packets/puback.rs +++ b/mqtt-format/src/v5/packets/puback.rs @@ -74,7 +74,7 @@ impl<'i> MPuback<'i> { } pub async fn write(&self, buffer: &mut W) -> WResult { - self.packet_identifer.write(buffer).await?; + self.packet_identifier.write(buffer).await?; self.reason.write(buffer).await?; self.properties.write(buffer).await } -- cgit v1.2.3