From 15c7f446dcc5fba99a4989e938c0bc34f4c84df2 Mon Sep 17 00:00:00 2001 From: tomsmekens <77664438+tomsmekens@users.noreply.github.com> Date: Thu, 16 Dec 2021 14:41:09 +0100 Subject: [PATCH] Fix broken data downloading calls to the httr function GET were changed to the base function get some time ago, this commit fixes that. --- R/utils.R | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/R/utils.R b/R/utils.R index 962f92a..9f4188d 100644 --- a/R/utils.R +++ b/R/utils.R @@ -14,10 +14,10 @@ #' get_me <- function(user, URL) { if (is.null(user)) { - get(URL, progress()) + httr::GET(URL, progress()) } else { u <- pwd_parse(user) - get(URL, httr::authenticate(u$username, u$password), progress()) + httr::GET(URL, httr::authenticate(u$username, u$password), httr::progress()) } } NULL