From 9ab629da35755060da6c55bc4bbbfb985162b22c Mon Sep 17 00:00:00 2001 From: Willy-JL <49810075+Willy-JL@users.noreply.github.com> Date: Fri, 16 Feb 2024 05:22:36 +0000 Subject: [PATCH] Fix JS default path --- applications/system/js_app/js_app.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/applications/system/js_app/js_app.c b/applications/system/js_app/js_app.c index e99cc3249..1c1a2ae3c 100644 --- a/applications/system/js_app/js_app.c +++ b/applications/system/js_app/js_app.c @@ -97,7 +97,7 @@ static void js_app_free(JsApp* app) { int32_t js_app(void* arg) { JsApp* app = js_app_alloc(); - FuriString* script_path = furi_string_alloc_set(APP_ASSETS_PATH()); + FuriString* script_path = furi_string_alloc_set(EXT_PATH("apps/Scripts")); do { if(arg != NULL && strlen(arg) > 0) { furi_string_set(script_path, (const char*)arg);