From f95853892b10f1d238b02265affeb95e3195f285 Mon Sep 17 00:00:00 2001 From: Jeremy Kauffman Date: Thu, 15 Jun 2017 20:02:46 -0400 Subject: [PATCH] disable availability check --- ui/js/component/fileActions/index.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ui/js/component/fileActions/index.js b/ui/js/component/fileActions/index.js index 3f3e43283..572783ee5 100644 --- a/ui/js/component/fileActions/index.js +++ b/ui/js/component/fileActions/index.js @@ -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),