mirror of
https://github.com/LBRYFoundation/lbry-desktop.git
synced 2025-08-27 15:31:27 +00:00
quick fix for download connecting... (#7354)
This commit is contained in:
parent
a0917908bb
commit
4c17b3818e
1 changed files with 1 additions and 1 deletions
|
@ -37,7 +37,7 @@ export const makeSelectDownloadingForUri = (uri) =>
|
||||||
return byOutpoint[fileInfo.outpoint];
|
return byOutpoint[fileInfo.outpoint];
|
||||||
});
|
});
|
||||||
|
|
||||||
export const selectUrisLoading = createSelector(selectState, (state) => state.urisLoading || {});
|
export const selectUrisLoading = createSelector(selectState, (state) => state.fetching || {});
|
||||||
|
|
||||||
export const makeSelectLoadingForUri = (uri) =>
|
export const makeSelectLoadingForUri = (uri) =>
|
||||||
createSelector(selectUrisLoading, makeSelectClaimForUri(uri), (fetchingByOutpoint, claim) => {
|
createSelector(selectUrisLoading, makeSelectClaimForUri(uri), (fetchingByOutpoint, claim) => {
|
||||||
|
|
Loading…
Add table
Reference in a new issue