Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: azkit
Title: Azure storage authentication toolkit
Version: 0.2.5
Version: 0.2.6
Authors@R:
c(person(
"Fran", "Barton",
Expand Down
2 changes: 1 addition & 1 deletion R/get_auth_token.R
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ get_auth_token <- function(

# 2. If that hasn't worked, try to get an already stored user token
# (unless `force_refresh` is on, in which case skip to option 3)
if (is.null(token) && use_cached) {
if (is.null(token) && (use_cached %||% TRUE)) {
token <- match_cached_token(resource, tenant, aad_version)
}

Expand Down
Loading