@3dsource/angular-unreal-module 0.0.81-dev.0 → 0.0.81-dev.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -3531,6 +3531,9 @@ const unrealReducer = createReducer(initialState, on(changeLowBandwidth, (state,
3531
3531
  : state.disconnectReason,
3532
3532
  };
3533
3533
  }), on(destroyRemoteConnections, (state, { reason }) => {
3534
+ if (state.disconnectReason === DisconnectReason.Destroy) {
3535
+ return state;
3536
+ }
3534
3537
  return { ...state, disconnectReason: reason };
3535
3538
  }), on(setSignalingName, (state, { instanceName }) => {
3536
3539
  return { ...state, awsInstance: { ...state.awsInstance, instanceName } };