Advertisement
quantumSkill

Untitled

Jan 20th, 2023
1,062
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. if (prevProps.activeSnapLens.id !== this.props.activeSnapLens.id ||
  2.     // if coming back from review directly to mic and switching to video
  3.     (this.props.activeSnapLens.id === '' && prevProps.recMode !== this.props.recMode && this.props.recMode === 'mic')) {
  4.     if (this.props.activeSnapLens.id === '') {
  5.         babylonRenderer.clearSnapLens();
  6.         this.props.toggleSnapLensLoadingOverlay(false);
  7.     } else {
  8.         this.setLens(this.props.activeSnapLens);
  9.     }
  10. }
  11.  
  12. // becomes
  13.  
  14. if (prevProps.activeSnapLens.id !== this.props.activeSnapLens.id && this.props.activeSnapLens.id !== '') {
  15.     this.setLens(this.props.activeSnapLens);
  16. } else if (prevProps.activeSnapLens.id !== this.props.activeSnapLens.id || (this.props.activeSnapLens.id === '' && prevProps.recMode !== this.props.recMode && this.props.recMode === 'mic')) {
  17.     babylonRenderer.clearSnapLens();
  18.     this.props.toggleSnapLensLoadingOverlay(false);
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement