Skip to content

Commit

Permalink
check if single quote causes timeouts
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
jkrumbiegel authored Nov 1, 2024
1 parent 647a045 commit fb73c15
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion WGLMakie/src/display.jl
Original file line number Diff line number Diff line change
Expand Up @@ -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));
Expand Down

0 comments on commit fb73c15

Please sign in to comment.