Merge branch 'td/sdpUpdatesp2pCalls' into 'main'
fix: filter list for adding p2p call events See merge request famedly/company/frontend/famedlysdk!1158
This commit is contained in:
commit
b1c63c0929
|
|
@ -1,3 +1,11 @@
|
||||||
|
## [0.15.0] - 28th Oct 2022
|
||||||
|
- chore: reduce error logging level of groupCall is null (td)
|
||||||
|
- fix: filter list for adding p2p call events (td)
|
||||||
|
- refactor: Remove deprecated fluffybox (Christian Pauly)
|
||||||
|
- chore: Lower logs level of native implementation noSuchMethod (Christian Pauly)
|
||||||
|
- fix: Redact originalSource on redaction (Christian Pauly)
|
||||||
|
- fix: Do not try to decrypt redacted events (Christian Pauly)
|
||||||
|
|
||||||
## [0.14.4] - 26th Oct 2022
|
## [0.14.4] - 26th Oct 2022
|
||||||
- fix: Do not wait for first sync after migration init
|
- fix: Do not wait for first sync after migration init
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1981,8 +1981,12 @@ class Client extends MatrixApi {
|
||||||
if (prevBatch != null &&
|
if (prevBatch != null &&
|
||||||
(type == EventUpdateType.timeline ||
|
(type == EventUpdateType.timeline ||
|
||||||
type == EventUpdateType.decryptedTimelineQueue)) {
|
type == EventUpdateType.decryptedTimelineQueue)) {
|
||||||
if (update.content.tryGet<String>('type')?.startsWith('m.call.') ??
|
if ((update.content.tryGet<String>('type')?.startsWith('m.call.') ??
|
||||||
false) {
|
false) ||
|
||||||
|
(update.content
|
||||||
|
.tryGet<String>('type')
|
||||||
|
?.startsWith('org.matrix.call.') ??
|
||||||
|
false)) {
|
||||||
final callEvent = Event.fromJson(update.content, room);
|
final callEvent = Event.fromJson(update.content, room);
|
||||||
final callId = callEvent.content.tryGet<String>('call_id');
|
final callId = callEvent.content.tryGet<String>('call_id');
|
||||||
callEvents.add(callEvent);
|
callEvents.add(callEvent);
|
||||||
|
|
|
||||||
|
|
@ -89,7 +89,7 @@ class VoIP {
|
||||||
final confId = event.content['conf_id'];
|
final confId = event.content['conf_id'];
|
||||||
final groupCall = groupCalls[confId];
|
final groupCall = groupCalls[confId];
|
||||||
if (groupCall == null) {
|
if (groupCall == null) {
|
||||||
Logs().e('[VOIP] onToDeviceEvent: groupCall is null.');
|
Logs().d('[VOIP] onToDeviceEvent: groupCall is null.');
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
final roomId = groupCall.room.id;
|
final roomId = groupCall.room.id;
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
name: matrix
|
name: matrix
|
||||||
description: Matrix Dart SDK
|
description: Matrix Dart SDK
|
||||||
version: 0.14.4
|
version: 0.15.0
|
||||||
homepage: https://famedly.com
|
homepage: https://famedly.com
|
||||||
repository: https://gitlab.com/famedly/company/frontend/famedlysdk.git
|
repository: https://gitlab.com/famedly/company/frontend/famedlysdk.git
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue