diff --git a/aquatic_udp_protocol/src/response.rs b/aquatic_udp_protocol/src/response.rs index c785759..b8a514a 100644 --- a/aquatic_udp_protocol/src/response.rs +++ b/aquatic_udp_protocol/src/response.rs @@ -225,7 +225,9 @@ impl Response { Ok((ErrorResponse { transaction_id: TransactionId(transaction_id), - message: String::from_utf8_lossy(&inner[position..]).into_owned().into(), + message: String::from_utf8_lossy(&inner[position..]) + .into_owned() + .into(), }) .into()) }