mirror of
https://github.com/AntennaPod/AntennaPod.git
synced 2025-02-02 11:46:55 +01:00
Merge pull request #4680 from ByteHamster/fix-file-size-stats
Fixed file size statistics
This commit is contained in:
commit
4decd1d9fe
@ -7,6 +7,7 @@ import androidx.collection.ArrayMap;
|
||||
import android.text.TextUtils;
|
||||
import android.util.Log;
|
||||
|
||||
import java.io.File;
|
||||
import java.util.ArrayList;
|
||||
import java.util.Collections;
|
||||
import java.util.Comparator;
|
||||
@ -774,7 +775,7 @@ public final class DBReader {
|
||||
feedTotalTime += media.getDuration() / 1000;
|
||||
|
||||
if (media.isDownloaded()) {
|
||||
totalDownloadSize = totalDownloadSize + media.getSize();
|
||||
totalDownloadSize += new File(media.getFile_url()).length();
|
||||
episodesDownloadCount++;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user