Skip to content

Commit

Permalink
one more fix here
Browse files Browse the repository at this point in the history
  • Loading branch information
lswainemoore committed Dec 12, 2023
1 parent 3e3f4e4 commit 1adeb14
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions R/wrappers.R
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ as.data.frame.organizations <- function(x, ...){
# we'll do the whole thing again!
row %>% unclass %>% data.frame
}))
df %>% mutate(created_on = parse_date_time("created_on", "Ymd H:M:S.z"))
df %>% mutate(created_on = parse_date_time(df$created_on, "Ymd H:M:S.z"))
}

#' Get the user's networks information, within the context of an organization
Expand Down Expand Up @@ -135,7 +135,7 @@ as.data.frame.networks <- function(x, ...){
# we'll do the whole thing again!
row %>% unclass %>% data.frame
}))
df %>% mutate(created_on = parse_date_time("created_on", "Ymd H:M:S.z"))
df %>% mutate(created_on = parse_date_time(df$created_on, "Ymd H:M:S.z"))
}

#' Get the user's devices
Expand Down

0 comments on commit 1adeb14

Please sign in to comment.