mirror of
https://github.com/borgbase/vorta
synced 2025-03-12 07:09:37 +00:00
Called set_progress() on wrong class. (#965)
This commit is contained in:
parent
33f0c4c4e4
commit
b96e8d460e
1 changed files with 1 additions and 1 deletions
|
@ -242,7 +242,7 @@ class VortaApp(QtSingleApplication):
|
||||||
def break_lock(self, profile):
|
def break_lock(self, profile):
|
||||||
params = BorgBreakThread.prepare(profile)
|
params = BorgBreakThread.prepare(profile)
|
||||||
if not params['ok']:
|
if not params['ok']:
|
||||||
self.set_progress(params['message'])
|
self.backup_progress_event.emit(params['message'])
|
||||||
return
|
return
|
||||||
thread = BorgBreakThread(params['cmd'], params, parent=self)
|
thread = BorgBreakThread(params['cmd'], params, parent=self)
|
||||||
thread.start()
|
thread.start()
|
||||||
|
|
Loading…
Add table
Reference in a new issue