From 346d41d3e106d2d33bed60e22028e34ebfb8cc4d Mon Sep 17 00:00:00 2001 From: Isaac Grynsztein Date: Thu, 9 Apr 2020 01:57:43 -0400 Subject: [PATCH] Fixed bug that broke server backups --- backend/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/app.js b/backend/app.js index 17de45b..7f6df42 100644 --- a/backend/app.js +++ b/backend/app.js @@ -419,7 +419,7 @@ async function backupServerLite() { const files_to_ignore = [path.join(config_api.getConfigItem('ytdl_subscriptions_base_path'), '**'), path.join(config_api.getConfigItem('ytdl_audio_folder_path'), '**'), path.join(config_api.getConfigItem('ytdl_video_folder_path'), '**'), - 'backup-*.zip']; + 'appdata/backups/backup-*.zip']; archive.glob('**/*', { ignore: files_to_ignore