fix(media): serialize browsing and metadata mutations

This commit is contained in:
edde746
2026-07-24 03:46:50 +02:00
parent 43a8fe020d
commit f8bfecf57d
30 changed files with 3088 additions and 465 deletions
@@ -34,8 +34,7 @@ WatchTogetherPeerService _createWatchTogetherPeerService({WatchTogetherRelayEndp
/// - Participant list
/// - Media switching across the session
class WatchTogetherProvider with ChangeNotifier {
WatchTogetherProvider({WatchTogetherPeerServiceFactory peerServiceFactory = _createWatchTogetherPeerService})
: _peerServiceFactory = peerServiceFactory;
WatchTogetherProvider({this._peerServiceFactory = _createWatchTogetherPeerService});
final WatchTogetherPeerServiceFactory _peerServiceFactory;