upgrade protocol verstion to v9.
This commit is contained in:
@@ -46,6 +46,7 @@ extension ProtocolVersionExt on ProtocolVersion {
|
|||||||
ProtocolVersion.v6: '6',
|
ProtocolVersion.v6: '6',
|
||||||
ProtocolVersion.v7: '7',
|
ProtocolVersion.v7: '7',
|
||||||
ProtocolVersion.v8: '8',
|
ProtocolVersion.v8: '8',
|
||||||
|
ProtocolVersion.v9: '9',
|
||||||
}[this]!;
|
}[this]!;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -44,7 +44,7 @@ class ConnectOptions {
|
|||||||
const ConnectOptions({
|
const ConnectOptions({
|
||||||
this.autoSubscribe = true,
|
this.autoSubscribe = true,
|
||||||
this.rtcConfiguration = const RTCConfiguration(),
|
this.rtcConfiguration = const RTCConfiguration(),
|
||||||
this.protocolVersion = ProtocolVersion.v8,
|
this.protocolVersion = ProtocolVersion.v9,
|
||||||
this.timeouts = Timeouts.defaultTimeouts,
|
this.timeouts = Timeouts.defaultTimeouts,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -15,6 +15,7 @@ enum ProtocolVersion {
|
|||||||
v6, // Session migration
|
v6, // Session migration
|
||||||
v7, // Remote unpublish
|
v7, // Remote unpublish
|
||||||
v8,
|
v8,
|
||||||
|
v9,
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Connection state type used throughout the SDK.
|
/// Connection state type used throughout the SDK.
|
||||||
|
|||||||
Reference in New Issue
Block a user