Merge pull request #582 from rodwgs/patch-1

Fix missing hourly backups; issues #497 and #467
This commit is contained in:
Tony George 2020-11-16 18:06:04 +05:30 committed by GitHub
commit 5329f83389
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1217,7 +1217,7 @@ public class Main : GLib.Object{
case "daily":
case "weekly":
case "monthly":
dt_filter = now.add_hours(-1);
dt_filter = now.add_hours(-1).add_seconds(59);
break;
default:
log_error(_("Unknown snapshot type") + ": %s".printf(tag));