From caf38559f14273e30fdd76af9611be664eb60956 Mon Sep 17 00:00:00 2001 From: VC Date: Thu, 5 Mar 2020 07:56:10 +0100 Subject: [PATCH] =?UTF-8?q?Need=20replies=20to=20have=20threads=20so?= =?UTF-8?q?=E2=80=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Cargo.lock | 2 +- Cargo.toml | 2 +- src/lib.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 028302e..743619e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1498,7 +1498,7 @@ dependencies = [ [[package]] name = "scootaloo" -version = "0.1.6" +version = "0.1.7" dependencies = [ "clap", "egg-mode", diff --git a/Cargo.toml b/Cargo.toml index 6bc14b4..1a2f747 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "scootaloo" -version = "0.1.6" +version = "0.1.7" authors = ["VC "] edition = "2018" diff --git a/src/lib.rs b/src/lib.rs index 9fc20b6..dcf1329 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -76,7 +76,7 @@ fn get_oauth2_token(config: &Config) -> Token { /// Get twitter user timeline fn get_user_timeline(config: &Config, token: Token, lid: Option) -> Result, Box> { // fix the page size to 200 as it is the maximum Twitter authorizes - let (_timeline, feed) = block_on_all(user_timeline(&config.twitter.username, false, false, &token) + let (_timeline, feed) = block_on_all(user_timeline(&config.twitter.username, true, false, &token) .with_page_size(200) .older(lid))?;