This commit is contained in:
M66B 2022-01-26 18:10:26 +01:00
parent 5290befbca
commit 511d6246b8
1 changed files with 1 additions and 1 deletions

View File

@ -120,7 +120,7 @@ public class EntityLog {
if (!ok || (++count % LOG_DELETE_BATCH_SIZE) == 0) {
long cake = Helper.getAvailableStorageSpace();
boolean wasOk = ok;
ok = (cake < Helper.MIN_REQUIRED_SPACE);
ok = (cake > Helper.MIN_REQUIRED_SPACE);
if (!ok)
if (wasOk) {
entry.type = Type.General;