Skip to content

Commit

Permalink
fix #30
Browse files Browse the repository at this point in the history
  • Loading branch information
eblondel committed Mar 20, 2024
1 parent a5ab33a commit f7f70aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/GNOpenAPIManager.R
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ GNOpenAPIManager <- R6Class("GNOpenAPIManager",
self$INFO("Successfully fetched tags (categories)!")
json <- content(req, encoding = "UTF-8")
return(json)
out <- do.call("rbind", lapply(json, function(json.tag){
out <- do.call("rbind.fill", lapply(json, function(json.tag){
out.tag <- data.frame(
id = json.tag$id,
name = json.tag$name,
Expand Down

0 comments on commit f7f70aa

Please sign in to comment.