Skip to content

Commit

Permalink
3.14.4
Browse files Browse the repository at this point in the history
  • Loading branch information
jmillan committed May 2, 2024
1 parent 06ae373 commit 98cf79e
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

### 3.14.4

- Worker: Fix crash. RtcpFeedback parameter is optional ([PR #1387](https://github.com/versatica/mediasoup/pull/1387), credits to @Lynnworld).

### 3.14.3

- Worker: Fix possible value overflow in `FeedbackRtpTransport.cpp` ([PR #1386](https://github.com/versatica/mediasoup/pull/1386), credits to @Lynnworld).
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mediasoup",
"version": "3.14.3",
"version": "3.14.4",
"description": "Cutting Edge WebRTC Video Conferencing",
"contributors": [
"Iñaki Baz Castillo <[email protected]> (https://inakibaz.me)",
Expand Down
2 changes: 1 addition & 1 deletion worker/src/RTC/RtpDictionaries/RtcpFeedback.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ namespace RTC
{
MS_TRACE();

this->type = data->type()->str();
this->type = data->type()->str();
if (flatbuffers::IsFieldPresent(data, FBS::RtpParameters::RtcpFeedback::VT_PARAMETER))
{
this->parameter = data->parameter()->str();
Expand Down

0 comments on commit 98cf79e

Please sign in to comment.