Skip to content
This repository has been archived by the owner on Oct 16, 2022. It is now read-only.

Commit

Permalink
Merge pull request #582 from rodwgs/patch-1
Browse files Browse the repository at this point in the history
Fix missing hourly backups; issues #497 and #467
  • Loading branch information
teejee2008 authored Nov 16, 2020
2 parents 02da9bf + 1e1774a commit 5329f83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Core/Main.vala
Original file line number Diff line number Diff line change
Expand Up @@ -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));
Expand Down

0 comments on commit 5329f83

Please sign in to comment.