gnome-software/rhbug1995817-fix-updates-pa...

15 lines
434 B
Diff

diff --git a/src/gs-updates-section.c b/src/gs-updates-section.c
index 0f41ba66..fa050513 100644
--- a/src/gs-updates-section.c
+++ b/src/gs-updates-section.c
@@ -293,6 +293,9 @@ _all_offline_updates_downloaded (GsUpdatesSection *self)
guint64 size = gs_app_get_size_download (app);
if (size != 0)
return FALSE;
+ size = gs_app_get_size_download_dependencies (app);
+ if (size != 0)
+ return FALSE;
}
return TRUE;