Skip to content

Commit

Permalink
Merge pull request #33 from lushing/sled-send-fix
Browse files Browse the repository at this point in the history
Use Send async_trait for SessionStoreExt
  • Loading branch information
gferon authored May 29, 2021
2 parents c290e49 + 7ff5a45 commit 20f8be1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/config/sled.rs
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ impl SessionStore for SledConfigStore {
}
}

#[async_trait(?Send)]
#[async_trait]
impl SessionStoreExt for SledConfigStore {
async fn get_sub_device_sessions(&self, name: &str) -> Result<Vec<u32>, SignalProtocolError> {
let session_prefix = self.session_prefix(name);
Expand Down

0 comments on commit 20f8be1

Please sign in to comment.