From 2871826c7cfc4ea49bf9659bf11d597e31f86375 Mon Sep 17 00:00:00 2001 From: Amirhossein Baghaie Date: Fri, 22 Dec 2023 10:25:35 +0330 Subject: [PATCH] Update Rsync.php --- src/Backup/Rsync.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Backup/Rsync.php b/src/Backup/Rsync.php index 037f8607..56d1f38d 100644 --- a/src/Backup/Rsync.php +++ b/src/Backup/Rsync.php @@ -110,7 +110,7 @@ protected function setupRsync(array $conf) $this->passwordFile = Util\Arr::getValue($conf, 'passwordFile', ''); $this->excludes = Util\Str::toList(Util\Arr::getValue($conf, 'exclude', ''), ':'); $this->delete = Util\Str::toBoolean(Util\Arr::getValue($conf, 'delete', ''), false); - $this->isDirSync = Util\Str::toBoolean(Util\Arr::getValue($conf, 'dirsync', ''), false); + $this->isDirSync = Util\Str::toBoolean(Util\Arr::getValue($conf, 'isDirSync', ''), false); } }