quick fix for download connecting... (#7354)

This commit is contained in:
jessopb 2021-12-15 17:56:20 -05:00 committed by GitHub
parent a0917908bb
commit 4c17b3818e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -37,7 +37,7 @@ export const makeSelectDownloadingForUri = (uri) =>
return byOutpoint[fileInfo.outpoint];
});
export const selectUrisLoading = createSelector(selectState, (state) => state.urisLoading || {});
export const selectUrisLoading = createSelector(selectState, (state) => state.fetching || {});
export const makeSelectLoadingForUri = (uri) =>
createSelector(selectUrisLoading, makeSelectClaimForUri(uri), (fetchingByOutpoint, claim) => {