disable availability check

This commit is contained in:
Jeremy Kauffman 2017-06-15 20:02:46 -04:00
parent 98782bbe2a
commit f95853892b

View file

@ -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),