clippy + fmt
This commit is contained in:
parent
da7e037562
commit
2a11ae6d99
@ -1,4 +1,3 @@
|
||||
use feed_rs;
|
||||
use url::Url;
|
||||
|
||||
#[derive(Debug)]
|
||||
|
@ -96,7 +96,7 @@ async fn update_entry_db(
|
||||
|
||||
/// Perform the request to fetch from the remote feed url
|
||||
async fn fetch_new_entries(url: &Url) -> Result<Vec<Entry>, Status> {
|
||||
let feed_data = fetch_feed(&url).await.map_err(|_| Status::BadGateway)?;
|
||||
let feed_data = fetch_feed(url).await.map_err(|_| Status::BadGateway)?;
|
||||
|
||||
fn get(item: Option<Text>, name: &'static str) -> String {
|
||||
item.map(|t| t.content.to_string())
|
||||
|
@ -18,10 +18,7 @@ impl SessionStore {
|
||||
|
||||
pub fn store(&self, user_id: Uuid, secret: String) {
|
||||
let mut store = self.0.write().unwrap();
|
||||
store
|
||||
.entry(user_id)
|
||||
.or_insert_with(HashSet::new)
|
||||
.insert(secret);
|
||||
store.entry(user_id).or_default().insert(secret);
|
||||
}
|
||||
|
||||
pub fn verify(&self, user_id: Uuid, secret: &str) -> bool {
|
||||
|
Loading…
Reference in New Issue
Block a user