Skip to content
Snippets Groups Projects
Commit ad46d68f authored by guinux's avatar guinux
Browse files

fix transaction summary when upgrading

parent 7b901038
No related branches found
No related tags found
No related merge requests found
......@@ -302,10 +302,9 @@ namespace Pamac {
summary_shown = false;
return commit_transaction_answer;
} else {
uint must_confirm_length = summary.to_install.length ()
+ summary.to_downgrade.length ()
+ summary.to_reinstall.length ()
uint must_confirm_length = summary.to_downgrade.length ()
+ summary.to_remove.length ()
+ summary.aur_conflicts_to_remove.length ()
+ summary.to_build.length ();
if (no_confirm_upgrade
&& must_confirm_length == 0
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment