We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5cf5d66 commit 2666773Copy full SHA for 2666773
1 file changed
src/UniGetUI.PackageEngine.Managers.WinGet/Helpers/WinGetPkgOperationHelper.cs
@@ -160,8 +160,10 @@ protected override OperationVeredict _getOperationResult(
160
161
if (uintCode is 0x8A15002B)
162
{
163
- if (Settings.Get("IgnoreUpdatesNotApplicable"))
+ if (Settings.Get("IgnoreUpdatesNotApplicable")) {
164
+ Logger.Info("Ignoring update " + package.Name + " as the update is not applicable to the platform");
165
IgnoredUpdatesDatabase.Add(IgnoredUpdatesDatabase.GetIgnoredIdForPackage(package), package.Version);
166
+ }
167
return OperationVeredict.Failure;
168
}
169
0 commit comments