1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-25 22:37:27 -04:00

Fixed: Rejoin MovieFiles to Movies to fix Cutoff short term

This commit is contained in:
Qstick
2019-08-05 22:13:03 -04:00
parent fee8244a74
commit 08b642575f
7 changed files with 38 additions and 57 deletions
+1 -6
View File
@@ -18,11 +18,6 @@ class MovieIndexFooter extends PureComponent {
let totalFileSize = 0;
movies.forEach((s) => {
const { statistics = {} } = s;
const {
sizeOnDisk = 0
} = statistics;
if (s.hasFile) {
movieFiles += 1;
@@ -38,7 +33,7 @@ class MovieIndexFooter extends PureComponent {
monitored++;
}
totalFileSize += sizeOnDisk;
totalFileSize += s.sizeOnDisk;
});
return (