Fixed #43: space prefix should not break directed call
This commit is contained in:
parent
e6464e952d
commit
90858f8964
@ -98,7 +98,8 @@ QMap<QString, int> directed_cmds = {
|
|||||||
{" 73", 28 }, // best regards, end of contact
|
{" 73", 28 }, // best regards, end of contact
|
||||||
{" ACK", 29 }, // acknowledge
|
{" ACK", 29 }, // acknowledge
|
||||||
{" AGN?", 30 }, // repeat message
|
{" AGN?", 30 }, // repeat message
|
||||||
{" ", 31 }, // send freetext
|
{" ", 31 }, // send freetext (weird artifact)
|
||||||
|
{" ", 31 }, // send freetext
|
||||||
};
|
};
|
||||||
|
|
||||||
QSet<int> allowed_cmds = {-1, 0, 1, 2, 3, 4, 5, 6, /*7,*/ 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31};
|
QSet<int> allowed_cmds = {-1, 0, 1, 2, 3, 4, 5, 6, /*7,*/ 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31};
|
||||||
|
Loading…
Reference in New Issue
Block a user