diff --git a/dist/bundle.es.js b/dist/bundle.es.js index 742564d..434826f 100644 --- a/dist/bundle.es.js +++ b/dist/bundle.es.js @@ -5222,7 +5222,7 @@ function handleClaimAction(state, action) { } newResolvingUrls.delete(url); - if (!stream && !channel) { + if (!stream && !channel && !pendingIds.includes(byUri[url])) { byUri[url] = null; } }); diff --git a/src/redux/reducers/claims.js b/src/redux/reducers/claims.js index 061e555..b00b2e7 100644 --- a/src/redux/reducers/claims.js +++ b/src/redux/reducers/claims.js @@ -160,7 +160,7 @@ function handleClaimAction(state: State, action: any): State { } newResolvingUrls.delete(url); - if (!stream && !channel) { + if (!stream && !channel && !pendingIds.includes(byUri[url])) { byUri[url] = null; } });