Follow clippy

This commit is contained in:
Kitaiti Makoto 2022-05-05 13:14:11 +09:00
parent 5871ed7301
commit 4e833c2061
2 changed files with 3 additions and 3 deletions

View file

@ -18,7 +18,7 @@ use rocket::{
response::{Responder, Response},
Outcome,
};
use tokio::{runtime, sync::mpsc};
use tokio::runtime;
use tracing::{debug, warn};
use self::sign::Signable;

View file

@ -517,7 +517,7 @@ impl User {
&self,
url: &str,
) -> Result<(Vec<T>, Option<String>)> {
let mut res = get(url, Self::get_sender(), CONFIG.proxy().cloned())?;
let res = get(url, Self::get_sender(), CONFIG.proxy().cloned())?;
let text = &res.text()?;
let json: serde_json::Value = serde_json::from_str(text)?;
let items = json["items"]
@ -532,7 +532,7 @@ impl User {
}
pub fn fetch_outbox<T: Activity + serde::de::DeserializeOwned>(&self) -> Result<Vec<T>> {
let mut res = get(
let res = get(
&self.outbox_url[..],
Self::get_sender(),
CONFIG.proxy().cloned(),