Skip to content

Commit

Permalink
Fixed rigctl server not starting on AOS
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryzerth committed Aug 8, 2021
1 parent ffc20f5 commit 9eb3ef0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion core/src/version.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#pragma once

#define VERSION_STR "1.0.1"
#define VERSION_STR "1.0.2"
2 changes: 1 addition & 1 deletion rigctl_server/src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@ class SigctlServerModule : public ModuleManager::Instance {
if (parts.size() == 0) { return; }

// If the command is a compound command, execute each one separately
if (parts[0].size() > 1 && parts[0][0] != '\\') {
if (parts[0].size() > 1 && parts[0][0] != '\\' && parts[0] != "AOS" && parts[0] != "LOS") {
std::string arguments;
if (parts.size() > 1) { arguments = cmd.substr(parts[0].size()); }
for (char c : parts[0]) {
Expand Down

0 comments on commit 9eb3ef0

Please sign in to comment.