Fixed some claims not being completely deleted.
This commit is contained in:
@@ -582,6 +582,8 @@ public abstract class DataStore
|
||||
for(Long chunkHash : chunkHashes)
|
||||
{
|
||||
ArrayList<Claim> claimsInChunk = this.chunksToClaimsMap.get(chunkHash);
|
||||
if(claimsInChunk != null)
|
||||
{
|
||||
for(int j = 0; j < claimsInChunk.size(); j++)
|
||||
{
|
||||
if(claimsInChunk.get(j).id.equals(claim.id))
|
||||
@@ -590,6 +592,7 @@ public abstract class DataStore
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
//remove from secondary storage
|
||||
|
||||
Reference in New Issue
Block a user