mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-12-23 03:11:32 +00:00
remove error context
This commit is contained in:
parent
2de5a4968b
commit
0cb0bb7c5a
1 changed files with 1 additions and 2 deletions
|
@ -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(())
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue