meriadec
7 years ago
No known key found for this signature in database
GPG Key ID: 1D2FC2305E2CB399
1 changed files with
6 additions and
1 deletions
-
src/components/EnsureDeviceApp/index.js
|
|
@ -89,6 +89,8 @@ class EnsureDeviceApp extends PureComponent<Props, State> { |
|
|
|
|
|
|
|
if (prevDeviceSelected !== deviceSelected) { |
|
|
|
this.handleStatusChange('connected', 'progress') |
|
|
|
// TODO: refacto to more generic/global way
|
|
|
|
clearTimeout(this._timeout) |
|
|
|
this._timeout = setTimeout(this.checkAppOpened, 250) |
|
|
|
} |
|
|
|
} |
|
|
@ -148,7 +150,10 @@ class EnsureDeviceApp extends PureComponent<Props, State> { |
|
|
|
this.handleStatusChange(this.state.deviceStatus, 'fail', e.message) |
|
|
|
} |
|
|
|
|
|
|
|
this._timeout = setTimeout(this.checkAppOpened, 1e3) |
|
|
|
// TODO: refacto to more generic/global way
|
|
|
|
if (!this._unmounted) { |
|
|
|
this._timeout = setTimeout(this.checkAppOpened, 1e3) |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
_timeout: * |
|
|
|