Refactoring

This commit is contained in:
M66B
2022-04-30 22:35:22 +02:00
parent 350e91d953
commit 531eddf84b
3 changed files with 4 additions and 4 deletions

View File

@@ -1886,7 +1886,7 @@ public class Log {
long storage_available = Helper.getAvailableStorageSpace();
long storage_total = Helper.getTotalStorageSpace();
long storage_used = Helper.getSize(context.getFilesDir());
long cache = Helper.getCacheSize(context);
long cache = Helper.getCacheQuota(context);
sb.append(String.format("Storage space: %s/%s App: %s cache: %s\r\n",
Helper.humanReadableByteCount(storage_total - storage_available),
Helper.humanReadableByteCount(storage_total),