From 4ee1b09cde5131cb8cb93e472df4abfd6baba4d2 Mon Sep 17 00:00:00 2001 From: Smart Home Cambodia Date: Sat, 27 May 2023 14:08:44 +0700 Subject: [PATCH] google --- hassio-google-drive-backup/CHANGELOG.md | 3 +++ hassio-google-drive-backup/backup/static/index.jinja2 | 2 +- hassio-google-drive-backup/config.json | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/hassio-google-drive-backup/CHANGELOG.md b/hassio-google-drive-backup/CHANGELOG.md index 1bc4f1d..057c55a 100644 --- a/hassio-google-drive-backup/CHANGELOG.md +++ b/hassio-google-drive-backup/CHANGELOG.md @@ -1,3 +1,6 @@ +## v0.110.4 [2023-04-28] +- Fix a whitespace error causing authorization to fail. + ## v0.110.3 [2023-03-24] - Fix an error causing "Days Between Backups" to be ignored when "Time of Day" for a backup is set. - Fix a bug causing some timezones to make the addon to fail to start. diff --git a/hassio-google-drive-backup/backup/static/index.jinja2 b/hassio-google-drive-backup/backup/static/index.jinja2 index 1452f90..e5f72a2 100644 --- a/hassio-google-drive-backup/backup/static/index.jinja2 +++ b/hassio-google-drive-backup/backup/static/index.jinja2 @@ -212,7 +212,7 @@ function send_creds(value) { path = URI("{{save_drive_creds_path}}").query({ - 'creds': value, + 'creds': value.trim(), 'host': getOutterHomeUri() }); postJson(path.toString(), {}, function(data){ diff --git a/hassio-google-drive-backup/config.json b/hassio-google-drive-backup/config.json index 7674f2b..7fe1825 100644 --- a/hassio-google-drive-backup/config.json +++ b/hassio-google-drive-backup/config.json @@ -1,6 +1,6 @@ { "name": "Home Assistant Google Drive Backup", - "version": "0.110.3", + "version": "0.110.4", "slug": "hassio_google_drive_backup", "description": "Automatically manage backups between Home Assistant and Google Drive", "arch": ["armhf", "armv7", "aarch64", "amd64", "i386"],