Skip to content

Commit 4e06845

Browse files
committed
release: 1.5.4+hotfix.4
1 parent 2421e88 commit 4e06845

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# Changelog
22

33
--------------------------------------------
4-
[1.5.4] - 2025-04-29
4+
[1.5.3+hotfix.4] - 2025-07-29
55

6-
* Media recording changes.
6+
* fixed E2EE issue for Chrome.
77

88
[1.5.3+hotfix.3] - 2025-07-24
99

lib/src/frame_cryptor_impl.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -449,7 +449,7 @@ class FrameCryptorFactoryImpl implements FrameCryptorFactory {
449449
required Algorithm algorithm,
450450
required KeyProvider keyProvider}) {
451451
var jsSender = (sender as RTCRtpSenderWeb).jsRtpSender;
452-
var trackId = jsSender.hashCode.toString();
452+
var trackId = jsSender.track?.id ?? sender.senderId;
453453
var kind = jsSender.track!.kind;
454454

455455
if (web.window.hasProperty('RTCRtpScriptTransform'.toJS).toDart) {

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: dart_webrtc
22
description: Use the dart/js library to re-wrap the webrtc js interface of the browser, to adapted common browsers.
3-
version: 1.5.3+hotfix.3
3+
version: 1.5.3+hotfix.4
44
homepage: https://github.com/flutter-webrtc/dart-webrtc
55

66
environment:

0 commit comments

Comments
 (0)