Skip to content

Commit

Permalink
fix bug: cannot set PS_EMA and -F switch
Browse files Browse the repository at this point in the history
  • Loading branch information
jvde-github committed Nov 9, 2022
1 parent 3976769 commit a7074b6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion DSP/Model.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,7 @@ namespace AIS {
if (option == "PS_EMA") {
PS_EMA = Util::Parse::Switch(arg);
}
if (option == "AFC_WIDE") {
else if (option == "AFC_WIDE") {
CGF_wide = Util::Parse::Switch(arg);
}
else
Expand Down
2 changes: 1 addition & 1 deletion IO/Network.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ namespace IO {
}

void HTTP::post() {
// if (!queue.size()) return;
if (!queue.size()) return;

std::list<std::string> send_list;

Expand Down

0 comments on commit a7074b6

Please sign in to comment.