remove error context

This commit is contained in:
phiresky 2024-12-13 14:11:19 +01:00
parent 2de5a4968b
commit 0cb0bb7c5a

View file

@ -48,8 +48,7 @@ impl PostTagInsertForm {
insert_into(post_tag::table) insert_into(post_tag::table)
.values(tags) .values(tags)
.execute(conn) .execute(conn)
.await .await?;
.context("Failed to insert post community tag associations")?;
Ok(()) Ok(())
} }
} }