diff --git a/CHANGELOG.md b/CHANGELOG.md index 9912c3921c..fbf4306492 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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). diff --git a/package-lock.json b/package-lock.json index fadd34ff9f..40051d0ea3 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "mediasoup", - "version": "3.14.3", + "version": "3.14.4", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "mediasoup", - "version": "3.14.3", + "version": "3.14.4", "hasInstallScript": true, "license": "ISC", "dependencies": { diff --git a/package.json b/package.json index 04ab196066..17cc7ef3e8 100644 --- a/package.json +++ b/package.json @@ -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 (https://inakibaz.me)", diff --git a/worker/src/RTC/RtpDictionaries/RtcpFeedback.cpp b/worker/src/RTC/RtpDictionaries/RtcpFeedback.cpp index 0c9b367eb0..b95bb46e36 100644 --- a/worker/src/RTC/RtpDictionaries/RtcpFeedback.cpp +++ b/worker/src/RTC/RtpDictionaries/RtcpFeedback.cpp @@ -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();