Skip to content

Commit 7f045a9

Browse files
author
FelixAnalytix
committed
quick fix with dplyr for issue bergant#10 bergant#10
1 parent c539679 commit 7f045a9

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

DESCRIPTION

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,6 @@ URL: https://github.com/bergant/airtabler
1313
LazyData: TRUE
1414
Imports:
1515
httr,
16-
jsonlite
16+
jsonlite,
17+
dplyr
1718
RoxygenNote: 6.0.1

R/airtabler.R

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -546,8 +546,9 @@ air_table_funs <- function(base, table_name) {
546546
ret
547547
})
548548
}
549-
550-
do.call(rbind, x)
549+
# QUICK FIX FOR ISSUE #10 https://github.com/bergant/airtabler/issues/10
550+
do.call(dplyr::bind_rows, x)
551+
#do.call(rbind, x)
551552

552553
}
553554

0 commit comments

Comments
 (0)