Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix issue preventing FreeDV startup on macOS <= 10.13. #652

Merged
merged 2 commits into from
Jan 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions USER_MANUAL.md
Original file line number Diff line number Diff line change
Expand Up @@ -905,6 +905,7 @@ LDPC | Low Density Parity Check Codes - a family of powerful FEC codes
* Rename KHz to kHz in documentation and UI. (PR #643)
* Avoid calculating distances in FreeDV Reporter window for those with invalid grid squares. (PR #646, #649)
* Fix display bugs in FreeDV Reporter window when switching between dark and light mode. (PR #646)
* Fix issue preventing FreeDV startup on macOS <= 10.13. (PR #652)
2. Enhancements:
* Allow user to refresh status message even if it hasn't been changed. (PR #632)
* Increase priority of status message highlight. (PR #632)
Expand Down
4 changes: 4 additions & 0 deletions src/os/osx_interface.mm
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,10 @@ void VerifyMicrophonePermissions(std::promise<bool>& microphonePromise)
}
}
}
else
{
microphonePromise.set_value(true);
}
#else
microphonePromise.set_value(true);
#endif // !APPLE_OLD_XCODE
Expand Down
Loading