Skip to content

Commit

Permalink
display re-auth url correctly in logs on error
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewhadley committed Oct 16, 2023
1 parent 994fbee commit d5a310b
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
6 changes: 6 additions & 0 deletions dropback/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## [7.2.1] - 2023-10-16

### Fixed

- display re-auth url correctly in logs on error

## [7.2.0] - 2023-09-27

### Added
Expand Down
2 changes: 1 addition & 1 deletion dropback/config.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: "Dropback"
description: "Sync Home Assistant backups to Dropbox"
url: "https://github.com/matthewhadley/homeassistant-dropback"
version: "7.2.0"
version: "7.2.1"
slug: "dropback"
init: false
stdin: true
Expand Down
5 changes: 4 additions & 1 deletion dropback/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,10 @@ declare __BASHIO_LOG_TIMESTAMP="%Y-%m-%d %T"

warn_about_access_token() {
bashio::log.fatal "Please check App Key and App Secret configuration values and generate a new Access Token"
bashio::log.fatal "A new Access Token can be generated at: $DROPBOX_ACCESS_TOKEN_URL"
bashio::log.fatal "A new Access Token can be generated at:"
bashio::log
bashio::log "$DROPBOX_ACCESS_TOKEN_URL"
bashio::log
}

check_network_access() {
Expand Down

0 comments on commit d5a310b

Please sign in to comment.