mirror of
https://github.com/DCC-EX/CommandStation-EX.git
synced 2024-11-24 16:46:13 +01:00
Compare commits
2 Commits
ce84974967
...
7db4a9575a
Author | SHA1 | Date | |
---|---|---|---|
|
7db4a9575a | ||
|
8b8e9e4919 |
|
@ -805,10 +805,14 @@ void DCCEXParser::parseOne(Print *stream, byte *com, RingStream * ringStream)
|
||||||
SENDFLASHLIST(stream,RMFT2::rosterIdList)
|
SENDFLASHLIST(stream,RMFT2::rosterIdList)
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
const FSH * functionNames= RMFT2::getRosterFunctions(id);
|
auto rosterName= RMFT2::getRosterName(id);
|
||||||
|
if (!rosterName) rosterName=F("");
|
||||||
|
|
||||||
|
auto functionNames= RMFT2::getRosterFunctions(id);
|
||||||
|
if (!functionNames) functionNames=RMFT2::getRosterFunctions(0);
|
||||||
|
if (!functionNames) functionNames=F("");
|
||||||
StringFormatter::send(stream,F(" %d \"%S\" \"%S\""),
|
StringFormatter::send(stream,F(" %d \"%S\" \"%S\""),
|
||||||
id, RMFT2::getRosterName(id),
|
id, rosterName, functionNames);
|
||||||
functionNames == NULL ? RMFT2::getRosterFunctions(0) : functionNames);
|
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
StringFormatter::send(stream, F(">\n"));
|
StringFormatter::send(stream, F(">\n"));
|
||||||
|
|
Loading…
Reference in New Issue
Block a user