Skip to content

Commit

Permalink
Fix issue preventing voice keyer from firing more than once.
Browse files Browse the repository at this point in the history
  • Loading branch information
tmiw committed Aug 21, 2024
1 parent fae6119 commit 43346da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/freedv_interface.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -388,7 +388,7 @@ void FreeDVInterface::setSync(int val)

int FreeDVInterface::getSync() const
{
if (currentRxMode_ == nullptr) return 1;
if (currentRxMode_ == nullptr) return 0;
return freedv_get_sync(currentRxMode_);
}

Expand Down

0 comments on commit 43346da

Please sign in to comment.