disable availability check
This commit is contained in:
parent
98782bbe2a
commit
f95853892b
1 changed files with 2 additions and 1 deletions
|
@ -28,7 +28,8 @@ const makeSelect = () => {
|
|||
|
||||
const select = (state, props) => ({
|
||||
fileInfo: selectFileInfoForUri(state, props),
|
||||
isAvailable: selectIsAvailableForUri(state, props),
|
||||
/*availability check is disabled due to poor performance, TBD if it dies forever or requires daemon fix*/
|
||||
isAvailable: true, //selectIsAvailableForUri(state, props),
|
||||
platform: selectPlatform(state),
|
||||
modal: selectCurrentModal(state),
|
||||
downloading: selectDownloadingForUri(state, props),
|
||||
|
|
Loading…
Reference in a new issue