diff options
Diffstat (limited to 'cli/ops')
-rw-r--r-- | cli/ops/jupyter.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/ops/jupyter.rs b/cli/ops/jupyter.rs index f63edebe8..7d12cb159 100644 --- a/cli/ops/jupyter.rs +++ b/cli/ops/jupyter.rs @@ -55,7 +55,7 @@ pub async fn op_jupyter_broadcast( .new_message(&message_type) .with_content(content) .with_metadata(metadata) - .with_buffers(buffers.into_iter().map(|b| b.into()).collect()) + .with_buffers(buffers.into_iter().map(|b| b.to_vec().into()).collect()) .send(&mut *iopub_socket.lock().await) .await?; } |