Skip to content

Commit

Permalink
fix load_dataframe (#198)
Browse files Browse the repository at this point in the history
  • Loading branch information
hongooi73 committed Feb 7, 2024
1 parent 299718f commit ae8538e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Microsoft365R 2.4.0.9000

## OneDrive/SharePoint

- In the `ms_drive_item$load_dataframe()` method, pass the `...` argument to `read_delim`.

## Planner

- Fix a bug in the `ms_plan$get_details()` method.
Expand Down
2 changes: 1 addition & 1 deletion R/ms_drive_item.R
Original file line number Diff line number Diff line change
Expand Up @@ -430,7 +430,7 @@ public=list(
{
con <- rawConnection(dat, "r")
on.exit(try(close(con), silent=TRUE))
readr::read_delim(con, delim=delim)
readr::read_delim(con, delim=delim, ...)
}
else utils::read.delim(text=rawToChar(dat), sep=delim, ...)
},
Expand Down

0 comments on commit ae8538e

Please sign in to comment.