Skip to content

Commit

Permalink
Fix notebook CommManager extraction of buffers (#6880)
Browse files Browse the repository at this point in the history
  • Loading branch information
philippjfr authored May 30, 2024
1 parent ddebc0b commit 0dd8612
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion panel/models/comm_manager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ export class CommManager extends Model {
this._event_buffer = []
const message = {...Message.create("PATCH-DOC", {}, patch)}
const buffers: ArrayBuffer[] = []
message.content = this._extract_buffers(message.content, buffers)
this._extract_buffers(message.content, buffers)
this._client_comm.send(message, {}, buffers)
for (const view of this.ns.shared_views.get(this.plot_id)) {
if (view !== this && view.document != null) {
Expand Down

0 comments on commit 0dd8612

Please sign in to comment.