|
|
@@ -75,9 +75,10 @@ ReducerRegistry.register('features/base/participants', (state = [], action) => {
|
|
75
|
75
|
// dev inspect
|
|
76
|
76
|
const participant_new = _participantJoined(action)
|
|
77
|
77
|
clog("PARTICIPANT_JOINED RFN dev inspect",{state,action,participant_new})
|
|
78
|
|
- // const ret = [ ...state, participant_new ]
|
|
|
78
|
+ var ret = [ ...state, participant_new ]
|
|
|
79
|
+ clog("PARTICIPANT_JOINED RFN dev inspect2",ret)
|
|
|
80
|
+ ret = new Proxy(ret,gen_proxy())
|
|
79
|
81
|
// const ret = new Proxy([ ...state, participant_new ],rprox)
|
|
80
|
|
- const ret = new Proxy([ ...state, participant_new ],gen_proxy())
|
|
81
|
82
|
return ret;
|
|
82
|
83
|
// return [ ...state, _participantJoined(action) ];
|
|
83
|
84
|
|