android backups: fix missing parameter
This commit is contained in:
@@ -1342,7 +1342,7 @@ class ElectrumWindow(App, Logger):
|
|||||||
return
|
return
|
||||||
# note: Clock.schedule_once is a hack so that we get called on a non-daemon thread
|
# note: Clock.schedule_once is a hack so that we get called on a non-daemon thread
|
||||||
# (needed for WalletDB.write)
|
# (needed for WalletDB.write)
|
||||||
Clock.schedule_once(lambda dt: self._save_backup())
|
Clock.schedule_once(lambda dt: self._save_backup(backup_dir))
|
||||||
request_permissions([Permission.WRITE_EXTERNAL_STORAGE], cb)
|
request_permissions([Permission.WRITE_EXTERNAL_STORAGE], cb)
|
||||||
|
|
||||||
def _save_backup(self, backup_dir):
|
def _save_backup(self, backup_dir):
|
||||||
|
|||||||
Reference in New Issue
Block a user