Browse Source

Skipping the app_gui_icon will save tons of space

master
Raphael Roberts 5 years ago
parent
commit
95f7ad73df
  1. 5
      tibi_hardlinks/backup_parser.py

5
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

Loading…
Cancel
Save