check for null value to notify lbry team.
This commit is contained in:
parent
ea2fcb56ab
commit
11d000119b
1 changed files with 1 additions and 1 deletions
|
@ -52,7 +52,7 @@ export async function claimSync () {
|
|||
let claims = JSON.parse(claimsResponse).data;
|
||||
status.info = 'addingClaimsToElastic';
|
||||
for (let claim of claims) {
|
||||
if (!claim.value) {
|
||||
if (claim.value === null) {
|
||||
console.log(claim);
|
||||
await logErrorToSlack('Failed to process claim ' + claim.claimId + ' due to missing value');
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue