Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion resources/language/resource.language.en_gb/strings.po
Original file line number Diff line number Diff line change
Expand Up @@ -965,7 +965,7 @@ msgid "Restore Backup"
msgstr ""

msgctxt "#32374"
msgid "Error: Invalid backup file. Filename must end in: .tar, .tar.gz, .tar.bz2, or .tar.xz"
msgid "Error: Invalid backup file. Filename must end in: .tar, .tar.bz2, .tar.gz, .tar.xz, or .tar.zst"
msgstr ""

msgctxt "#32375"
Expand Down
2 changes: 1 addition & 1 deletion resources/lib/modules/system.py
Original file line number Diff line number Diff line change
Expand Up @@ -602,7 +602,7 @@ def do_restore(self, listItem=None):
if not os.path.isfile(restore_file_path):
return
# file selected that won't trigger busybox's backup restoration
if not restore_file_path.endswith(('.tar', '.tar.gz', '.tar.bz2', '.tar.xz')):
if not restore_file_path.endswith(('.tar', '.tar.bz2', '.tar.gz', '.tar.xz', '.tar.zst')):
log.log(f'Error: Invalid backup file: {restore_file_path}', log.ERROR)
xbmcDialog.ok(oe._(32373), oe._(32374))
return
Expand Down