refactor: use allegedly more performant codium fix

This commit is contained in:
Youwen Wu 2024-03-06 23:47:53 -08:00
parent 8dd6edc60a
commit eacc25f0b7
Signed by: youwen5
GPG key ID: 865658ED1FE61EC3

View file

@ -73,7 +73,8 @@ pub async fn subscribe_topics(
/// This function strips the '/SmartDashboard/' prefix from the topic name if
/// it is present. This allows easier data processing from the frontend.
fn process_message(message: &mut MessageData) {
if let Some(stripped) = message.topic_name.strip_prefix("/SmartDashboard/") {
message.topic_name = stripped.to_string();
}
message.topic_name = message
.topic_name
.trim_start_matches("/SmartDashboard/")
.to_string();
}