We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ffc20f5 commit 9eb3ef0Copy full SHA for 9eb3ef0
core/src/version.h
@@ -1,3 +1,3 @@
1
#pragma once
2
3
-#define VERSION_STR "1.0.1"
+#define VERSION_STR "1.0.2"
rigctl_server/src/main.cpp
@@ -365,7 +365,7 @@ class SigctlServerModule : public ModuleManager::Instance {
365
if (parts.size() == 0) { return; }
366
367
// If the command is a compound command, execute each one separately
368
- if (parts[0].size() > 1 && parts[0][0] != '\\') {
+ if (parts[0].size() > 1 && parts[0][0] != '\\' && parts[0] != "AOS" && parts[0] != "LOS") {
369
std::string arguments;
370
if (parts.size() > 1) { arguments = cmd.substr(parts[0].size()); }
371
for (char c : parts[0]) {
0 commit comments