Skip to content

Commit 2e86e9e

Browse files
committed
Fix an issue where skipping versions wouldn't work when invoked from the operation result
1 parent d7cccb9 commit 2e86e9e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/UniGetUI/Controls/OperationWidgets/OperationControl.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -573,7 +573,7 @@ public List<MenuFlyoutItemBase> GetRetryOptions(Action callback)
573573
skipThisVersion.Click += async (_, _) =>
574574
{
575575
callback();
576-
await packageOp.Package.AddToIgnoredUpdatesAsync(packageOp.Package.VersionString);
576+
await packageOp.Package.AddToIgnoredUpdatesAsync(packageOp.Package.NewVersionString);
577577
UpgradablePackagesLoader.Instance.Remove(packageOp.Package);
578578
Close();
579579
};

0 commit comments

Comments
 (0)