Seed Support #56

Closed
ocnios wants to merge 173 commits from master into build
Showing only changes of commit 88720903f4 - Show all commits

View file

@ -517,7 +517,7 @@ lbry._updateClaimOwnershipCache = function(claimId) {
lbry.getMyClaims((claimInfos) => { lbry.getMyClaims((claimInfos) => {
lbry._claimIdOwnershipCache[claimId] = !!claimInfos.reduce(function(match, claimInfo) { lbry._claimIdOwnershipCache[claimId] = !!claimInfos.reduce(function(match, claimInfo) {
return match || claimInfo.claim_id == claimId; return match || claimInfo.claim_id == claimId;
}); }, false);
}); });
}; };