Skip to content

Commit

Permalink
Merge pull request #126 from shiguredo/feature/fix-sumomo-insecure
Browse files Browse the repository at this point in the history
SoraSignalingConfig.insecure の設定ミスを修正する
  • Loading branch information
zztkm authored Sep 18, 2024
2 parents 2d018ab + b03f707 commit fc2493a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/sumomo/src/sumomo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ class Sumomo : public std::enable_shared_from_this<Sumomo>,
context_->signaling_thread()->BlockingCall([this]() {
return context_->connection_context()->default_socket_factory();
});
config_.insecure = config.insecure;
config.insecure = config_.insecure;
auto load_file = [](const std::string& path) {
std::ifstream ifs(path, std::ios::binary);
if (!ifs) {
Expand Down

0 comments on commit fc2493a

Please sign in to comment.