Skip to content

Commit

Permalink
fix(controller): wrong data scope used for delete chunk data
Browse files Browse the repository at this point in the history
  • Loading branch information
Xzavier0722 committed Mar 9, 2024
1 parent b0acc20 commit 7b80954
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -743,7 +743,7 @@ private SlimefunChunkData getChunkDataCache(Chunk chunk, boolean createOnNotExis
}

private void deleteChunkAndBlockDataDirectly(String cKey) {
var req = new RecordKey(DataScope.BLOCK_DATA);
var req = new RecordKey(DataScope.BLOCK_RECORD);
req.addCondition(FieldKey.CHUNK, cKey);
deleteData(req);

Expand Down

0 comments on commit 7b80954

Please sign in to comment.