Merge branch 'dev' into fix/static-version

This commit is contained in:
zaaarf 2024-10-13 14:41:39 +02:00 committed by GitHub
commit 790ef3b0f8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -52,6 +52,6 @@ impl CursorController {
/// Block until next /// Block until next
#[napi(js_name = "recv")] #[napi(js_name = "recv")]
pub async fn js_recv(&self) -> napi::Result<crate::api::Cursor> { pub async fn js_recv(&self) -> napi::Result<crate::api::Cursor> {
Ok(self.recv().await?.into()) Ok(self.recv().await?)
} }
} }