Fix JS default path

This commit is contained in:
Willy-JL
2024-02-16 05:22:36 +00:00
parent 9a7ee41ee1
commit 9ab629da35
+1 -1
View File
@@ -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);