From 213797e31dfe0bd1d6a8a7963b3312c9655fcce4 Mon Sep 17 00:00:00 2001 From: Fluffyscratch Date: Wed, 24 Jun 2026 14:19:16 +0200 Subject: [PATCH] Fix scratchblocks package path --- services/scratchblocks.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/services/scratchblocks.py b/services/scratchblocks.py index e2079b5..3c1acab 100644 --- a/services/scratchblocks.py +++ b/services/scratchblocks.py @@ -35,11 +35,11 @@ async def render_blocks_image( # Update scratchblocks path html = html.replace( "scratchblocks/build/scratchblocks.min.js", - "../private/scratchblocks/build/scratchblocks.min.js", + "scratchblocks/build/scratchblocks.min.js", ) html = html.replace( "scratchblocks/build/translations-all.js", - "../private/scratchblocks/build/translations-all.js", + "scratchblocks/build/translations-all.js", ) # Save modified HTML to a temporary file