mirror of
https://git.joinplu.me/Plume/Plume.git
synced 2024-12-23 18:40:34 +00:00
Use pattern match instead of unwrap()
This commit is contained in:
parent
2483303138
commit
42fb0cf825
1 changed files with 2 additions and 2 deletions
|
@ -42,9 +42,9 @@ impl Actor for SearchActor {
|
|||
PostPublished(post) => {
|
||||
let conn = self.conn.get();
|
||||
match conn {
|
||||
Ok(_) => {
|
||||
Ok(conn) => {
|
||||
self.searcher
|
||||
.add_document(&conn.unwrap(), &post)
|
||||
.add_document(&conn, &post)
|
||||
.unwrap_or_else(|e| error!("{:?}", e));
|
||||
}
|
||||
_ => {
|
||||
|
|
Loading…
Reference in a new issue