Skip to content

Commit 9eb3ef0

Browse files
author
Ryzerth
committed
Fixed rigctl server not starting on AOS
1 parent ffc20f5 commit 9eb3ef0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

core/src/version.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#pragma once
22

3-
#define VERSION_STR "1.0.1"
3+
#define VERSION_STR "1.0.2"

rigctl_server/src/main.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -365,7 +365,7 @@ class SigctlServerModule : public ModuleManager::Instance {
365365
if (parts.size() == 0) { return; }
366366

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

0 commit comments

Comments
 (0)