mirror of
https://github.com/teloxide/teloxide.git
synced 2024-12-23 15:01:45 +01:00
Update src/dispatching/dialogue/storage/in_mem_storage.rs
Co-authored-by: Waffle Lapkin <waffle.lapkin@gmail.com>
This commit is contained in:
parent
d14e0a49e9
commit
80e1afaeed
1 changed files with 1 additions and 1 deletions
|
@ -46,7 +46,7 @@ where
|
|||
.lock()
|
||||
.await
|
||||
.remove(&chat_id)
|
||||
.map_or_else(|| Err(InMemStorageError::RowNotFound), |_| Ok(()))
|
||||
.map_or(Err(InMemStorageError::RowNotFound), |_| Ok(()))
|
||||
})
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue