mirror of
https://git.joinplu.me/Plume/Plume.git
synced 2024-11-14 07:51:01 +00:00
Follow clippy
This commit is contained in:
parent
5871ed7301
commit
4e833c2061
2 changed files with 3 additions and 3 deletions
|
@ -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;
|
||||
|
|
|
@ -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(),
|
||||
|
|
Loading…
Reference in a new issue