Attempt to use softwareudpdate product 'Deferred' info if available

This commit is contained in:
Greg Neagle
2022-04-06 08:59:17 -07:00
parent 1f695d5054
commit 1a7ab81e14
+2 -1
View File
@@ -217,7 +217,8 @@ class AppleUpdates(object):
elif item.get('Title'):
# new-style info first seen in Catalina
if (item.get('Title') == update.get('Display Name') and
item.get('Version') == update.get('Display Version')
item.get('Version') == update.get('Display Version') and
item.get('Deferred') != "YES"
):
item.update(update)
filtered_updates.append(item)