Display user timeline

This commit is contained in:
Roger Braun 2017-06-12 16:20:02 +02:00
parent 090148ef60
commit 2e7029b670
3 changed files with 12 additions and 6 deletions

View file

@ -113,11 +113,11 @@ const fetchTimeline = ({timeline, credentials, since = false, until = false, use
let params = []
if (since) {
params.push('since_id', since)
params.push(['since_id', since])
}
if (until) {
params.push('max_id', until)
params.push(['max_id', until])
}
if (userId) {