From 437a28b108f2b643f3580869ad5ea8581f1f0461 Mon Sep 17 00:00:00 2001 From: tidusjar Date: Tue, 17 May 2016 20:31:27 +0100 Subject: [PATCH] update --- PlexRequests.Services/Jobs/StoreBackup.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PlexRequests.Services/Jobs/StoreBackup.cs b/PlexRequests.Services/Jobs/StoreBackup.cs index f64a7361e..1009e0daf 100644 --- a/PlexRequests.Services/Jobs/StoreBackup.cs +++ b/PlexRequests.Services/Jobs/StoreBackup.cs @@ -81,7 +81,7 @@ namespace PlexRequests.Services.Jobs try { - if(DoWeNeedToBackUp(backupDir.FullName)) + if(DoWeNeedToBackup(backupDir.FullName)) { File.Copy(dbPath, Path.Combine(backupDir.FullName, $"PlexRequests.sqlite_{DateTime.Now.ToString("yyyy-MM-dd hh.mm.ss")}.bak")); }