forgot new lines in backupconfig

Signed-off-by: si458 <simonsmith5521@gmail.com>

si458 committed Sep 10, 2024 at 22:01 UTC 4bcec73e0744199f6ca0247e5bf1b86ec8d04ca5
1 file changed +3 -3
db.js
+3 -3
@@ -3118,13 +3118,13 @@ module.exports.CreateDB = function (parent, func) {
3118 else { r += parent.config.settings.autobackup.mysqldumppath + '\r\n'; }
3119 }
3120 if (typeof parent.config.settings.autobackup.s3 == 'object') {
3121 - r += 'S3 Backups: Enabled';
3121 + r += 'S3 Backups: Enabled\r\n';
3122 }
3123 if (typeof parent.config.settings.autobackup.webdav == 'object') {
3124 - r += 'WebDAV Backups: Enabled';
3124 + r += 'WebDAV Backups: Enabled\r\n';
3125 }
3126 if (typeof parent.config.settings.autobackup.googledrive == 'object') {
3127 - r += 'Google Drive Backups: Enabled';
3127 + r += 'Google Drive Backups: Enabled\r\n';
3128 }
3129
3130