From fb73c150edc8c7b30714984bb3f24f3dad17b961 Mon Sep 17 00:00:00 2001 From: Julius Krumbiegel <22495855+jkrumbiegel@users.noreply.github.com> Date: Fri, 1 Nov 2024 10:50:34 +0100 Subject: [PATCH] check if single quote causes timeouts Seems like the only change in the WGLMakie source to me that could possibly have an effect on anything, if interpolation of that string into javascript has some escaping bugs. --- WGLMakie/src/display.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/WGLMakie/src/display.jl b/WGLMakie/src/display.jl index 0c3ff502e02..16ebcb93588 100644 --- a/WGLMakie/src/display.jl +++ b/WGLMakie/src/display.jl @@ -316,7 +316,7 @@ function insert_scene!(session::Session, screen::Screen, scene::Scene) scene_ser = serialize_scene(scene) parent = scene.parent parent_uuid = js_uuid(parent) - err = "Can't find scene js_uuid(scene) == $(parent_uuid)" + err = "Cannot find scene js_uuid(scene) == $(parent_uuid)" evaljs_value(session, js""" $(WGL).then(WGL=> { const parent = WGL.find_scene($(parent_uuid));