fix(player): non-immutable exception list
This commit is contained in:
parent
dd8f666ca5
commit
cce7017905
1 changed files with 2 additions and 2 deletions
|
|
@ -32,11 +32,11 @@ export default class WebPlayer extends Player {
|
|||
|
||||
constructor(private wpState: Store<typeof WebPlayer.INITIAL_STATE>, session, config: RTCIceServer[], live: boolean) {
|
||||
|
||||
let initialLists = live ? {} :{
|
||||
let initialLists = live ? {} : {
|
||||
event: session.events.toJSON(),
|
||||
stack: session.stackEvents.toJSON(),
|
||||
resource: session.resources.toJSON(),
|
||||
exceptions: session.errors,
|
||||
exceptions: session.errors.toJSON(),
|
||||
}
|
||||
|
||||
const screen = new Screen()
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue