We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d2bdfd9 commit ffba313Copy full SHA for ffba313
1 file changed
src/UniGetUI.PackageEngine.Managers.WinGet/Helpers/WinGetPkgOperationHelper.cs
@@ -180,6 +180,12 @@ protected override OperationVeredict _getOperationResult(
180
return OperationVeredict.AutoRetry;
181
}
182
183
+ if (uintCode == 0x8A150014 && operation is OperationType.Uninstall)
184
+ {
185
+ // Application not found
186
+ return OperationVeredict.Success;
187
+ }
188
+
189
return OperationVeredict.Failure;
190
191
0 commit comments