mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy-rest-api.git
synced 2025-02-02 14:16:38 +00:00
fix: division by zero
This commit is contained in:
parent
a543f6da2a
commit
1f1fcc223b
|
@ -80,6 +80,8 @@ def do_autobackup() -> None:
|
||||||
"""
|
"""
|
||||||
time = datetime.utcnow().replace(tzinfo=timezone.utc)
|
time = datetime.utcnow().replace(tzinfo=timezone.utc)
|
||||||
services_to_back_up = Backups.services_to_back_up(time)
|
services_to_back_up = Backups.services_to_back_up(time)
|
||||||
|
if not services_to_back_up:
|
||||||
|
return
|
||||||
job = add_autobackup_job(services_to_back_up)
|
job = add_autobackup_job(services_to_back_up)
|
||||||
|
|
||||||
progress_per_service = 100 // len(services_to_back_up)
|
progress_per_service = 100 // len(services_to_back_up)
|
||||||
|
|
Loading…
Reference in a new issue