Skip to content

Commit

Permalink
SoraSignalingConfig.insecure の設定ミスを修正する
Browse files Browse the repository at this point in the history
  • Loading branch information
zztkm committed Sep 18, 2024
1 parent 2d018ab commit ad96d3f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@
- クライアント認証に関するオプション `--client-cert`, `--client-key` を追加
- 指定できるファイルは PEM 形式
- @melpon
- [FIX] sumomo の SoraSignalingConfig.insecure を設定する処理を修正する
- @zztkm

## 2024.7.0

Expand Down
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 ad96d3f

Please sign in to comment.