Skip to content

Commit

Permalink
fix truncated tweet text in lists_statuses
Browse files Browse the repository at this point in the history
  • Loading branch information
giocomai committed Oct 21, 2019
1 parent b88ba54 commit 59bc590
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions R/lists_statuses.R
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,8 @@ lists_statuses_ <- function(list_id = NULL,
since_id = since_id,
max_id = max_id,
count = n,
include_rts = include_rts
include_rts = include_rts,
tweet_mode = "extended"
)
names(params)[2] <- paste0("owner_", .id_type(owner_user))
} else {
Expand All @@ -94,7 +95,8 @@ lists_statuses_ <- function(list_id = NULL,
since_id = since_id,
max_id = max_id,
count = n,
include_rts = include_rts
include_rts = include_rts,
tweet_mode = "extended"
)
}
token <- check_token(token)
Expand Down

0 comments on commit 59bc590

Please sign in to comment.