diff --git a/remote-backup/CHANGELOG.md b/remote-backup/CHANGELOG.md index f84dbda..c906f2b 100644 --- a/remote-backup/CHANGELOG.md +++ b/remote-backup/CHANGELOG.md @@ -1,3 +1,8 @@ +# 2022.9.2 + +- Fix password check #69 + +**Full Changelog**: https://github.com/ikifar2012/remote-backup-addon/compare/2022.9.1...2022.9.2 # 2022.9.1 - Backup password fix #68 diff --git a/remote-backup/config.yaml b/remote-backup/config.yaml index 90dd0b7..5f8fe45 100644 --- a/remote-backup/config.yaml +++ b/remote-backup/config.yaml @@ -1,5 +1,5 @@ name: Remote Backup -version: "2022.9.1" +version: "2022.9.2" slug: remote_backup description: Automatically create and transfer HA backups using SFTP (SCP), rsync, or rclone (experimental) image: ikifar/remote-backup-{arch} diff --git a/remote-backup/run.sh b/remote-backup/run.sh index 6e557b4..62742d0 100755 --- a/remote-backup/run.sh +++ b/remote-backup/run.sh @@ -99,7 +99,7 @@ function create-local-backup { local -r backup_exclude_addons=$(bashio::config "backup_exclude_addons") local -r base_folders="addons/local homeassistant media share ssl" local -r backup_password=$(bashio::config "backup_password") - if bashio::config.has_value "${backup_password}"; then + if bashio::config.has_value "backup_password"; then bashio::log.info "Creating local backup with password." local data="{\"name\":\"${BACKUP_NAME}\", \"password\": \"${backup_password}\"}" else