diff --git a/Changes b/Changes index 535e933..81c1f0d 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,6 @@ 202X-XX-XX v. 2.99.1 -------------------- +- Moved backend Update to DistroSync since it performs better checks - Added signal transactionelemprocess 2024-12-29 v. 2.99.0 diff --git a/dnfdragora/ui.py b/dnfdragora/ui.py index 16c6dfd..e3bf971 100644 --- a/dnfdragora/ui.py +++ b/dnfdragora/ui.py @@ -1347,7 +1347,7 @@ def _populate_transaction(self) : if action == 'i': self.backend.Install(pkgs, sync=True) elif action == 'u': - self.backend.Update(pkgs, sync=True) + self.backend.DistroSync(pkgs, sync=True) elif action == 'r': self.backend.Remove(pkgs, sync=True) else: