Skip to content

Commit

Permalink
fixes #235
Browse files Browse the repository at this point in the history
  • Loading branch information
robweber committed Apr 28, 2024
1 parent d1907ba commit 324f3a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/lib/backup.py
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ def restore(self, progressOverride=False, selectedSets=None):
# copy just this file from the remote vfs
self.transferSize = self.remote_vfs.fileSize(self.remote_base_path + self.restore_point)
zipFile = []
zipFile.append({'file': self.remote_base_path + self.restore_point, 'size': self.transferSize})
zipFile.append({'file': self.remote_base_path + self.restore_point, 'size': self.transferSize, 'is_dir': False})

# set transfer size
self.transferLeft = self.transferSize
Expand Down

0 comments on commit 324f3a4

Please sign in to comment.