Commit 68b649e9 authored by Julian Oes's avatar Julian Oes

Vehicle: remove only first hashtag char

parent e1b7d61b
......@@ -1003,7 +1003,7 @@ void Vehicle::_chunkedStatusTextCompleted(uint8_t compId)
bool readAloud = false;
if (messageText.startsWith("#")) {
messageText.remove("#");
messageText.remove(0, 1);
readAloud = true;
}
else if (severity <= MAV_SEVERITY_NOTICE) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment