Skip to content

Commit

Permalink
chore: windows again
Browse files Browse the repository at this point in the history
  • Loading branch information
achingbrain committed Jan 14, 2025
1 parent 58e59b8 commit 615b375
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/global.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -100,10 +100,10 @@ void InvokeUnhandledStunRequestCallback (const juice_mux_binding_request *info,
auto callback = static_cast<UnhandledStunRequestCallback *>(user_ptr);

(*callback)({
.localUfrag = std::string(info->local_ufrag),
.remoteUfrag = std::string(info->remote_ufrag),
.address = std::string(info->address),
.port = info->port
std::string(info->local_ufrag),
std::string(info->remote_ufrag),
std::string(info->address),
info->port
});
}

Expand Down

0 comments on commit 615b375

Please sign in to comment.