Run cargo fmt
This commit is contained in:
@@ -215,7 +215,7 @@ pub fn add_email_blocklist(
|
||||
if let Err(Error::Db(_)) = result {
|
||||
Ok(Flash::error(
|
||||
Redirect::to(uri!(admin_email_blocklist: page = None)),
|
||||
i18n!(rockets.intl.catalog, "Email already blocked")
|
||||
i18n!(rockets.intl.catalog, "Email already blocked"),
|
||||
))
|
||||
} else {
|
||||
Ok(Flash::success(
|
||||
|
||||
+1
-3
@@ -318,9 +318,7 @@ pub fn update(
|
||||
.filter(|t| !t.is_empty())
|
||||
.collect::<HashSet<_>>()
|
||||
.into_iter()
|
||||
.filter_map(|t| {
|
||||
Tag::build_activity(t.to_string()).ok()
|
||||
})
|
||||
.filter_map(|t| Tag::build_activity(t.to_string()).ok())
|
||||
.collect::<Vec<_>>();
|
||||
post.update_tags(&conn, tags)
|
||||
.expect("post::update: tags error");
|
||||
|
||||
Reference in New Issue
Block a user