Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## [7.1.2] 12th May 2026
- fix: do not send notify rtc event in direct chats (td)

## [7.1.1] 12th May 2026
- fix: call delayed event canceller should not use application and actually remove it from local state on leave (td)
- fix: Do not send dozens of key request to device messages on timeline export (krille-chan)
Expand Down
2 changes: 1 addition & 1 deletion lib/src/voip/group_call_session.dart
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ class GroupCallSession {

Logs().v('Entered group call $groupCallId');

if (shouldSendNotification) {
if (shouldSendNotification && !room.isDirectChat) {
Logs().d(
'Sending RTC notification for group call started with membership: $memberEventId',
);
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: matrix
description: Matrix Dart SDK
version: 7.1.1
version: 7.1.2
homepage: https://famedly.com
repository: https://github.com/famedly/matrix-dart-sdk.git
issue_tracker: https://github.com/famedly/matrix-dart-sdk/issues
Expand Down
Loading