diff --git a/tibi_hardlinks/backup_parser.py b/tibi_hardlinks/backup_parser.py index b8f50a1..ce60a84 100644 --- a/tibi_hardlinks/backup_parser.py +++ b/tibi_hardlinks/backup_parser.py @@ -23,8 +23,9 @@ def parse_property_text(text): match = key_value_regex.match(line) if match: key = match.group("key") - value = match.group("value") - properties[key] = value + if key != "app_gui_icon": + value = match.group("value") + properties[key] = value return properties