From a4c6831eadcb5e7b2bbd143a5a7551282be1b7a4 Mon Sep 17 00:00:00 2001 From: Martin Elff Date: Thu, 19 Dec 2024 15:53:31 +0100 Subject: [PATCH] Fix use of stream1 --- pkg/R/widget-output.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/R/widget-output.R b/pkg/R/widget-output.R index ab4a68c..bf71f6c 100644 --- a/pkg/R/widget-output.R +++ b/pkg/R/widget-output.R @@ -91,7 +91,7 @@ OutputWidgetClass <- R6Class_("OutputWidget", private$r_msg_frag <- paste0(private$r_msg_frag, chunk) } else if(nzchar(chunk)) { - self$stream1(chunk, stream_name) + private$stream1(chunk, stream_name) } } }