1
0
Fork 0
mirror of https://github.com/borgbase/vorta synced 2025-01-03 13:45:49 +00:00

fix crash when mounting a backup

This commit is contained in:
Thomas Waldmann 2018-11-21 12:34:27 +01:00
parent 3bc422ebd7
commit ce6e01310b

View file

@ -139,7 +139,7 @@ def mount_action(self):
def receive():
dir = dialog.selectedFiles()
if dir:
params['cmd'].append(dir)
params['cmd'].append(dir[0])
if params['ok']:
self._toggle_all_buttons(False)
thread = BorgMountThread(params['cmd'], params, parent=self)