Skip to content

Commit

Permalink
Fix empty bulk cells not accepting contents with no compression card
Browse files Browse the repository at this point in the history
Closes #74
  • Loading branch information
62832 committed Sep 26, 2023
1 parent 3b3c2bb commit df340ae
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ public long insert(AEKey what, long amount, Actionable mode, IActionSource sourc
return 0;
}

if (!compressionEnabled && (!what.equals(filterItem) || !what.equals(storedItem))) {
if (!compressionEnabled && !what.equals(filterItem)) {
return 0;
}

Expand Down

0 comments on commit df340ae

Please sign in to comment.