From 2139551abf13569e4d0b998f764765dac1390ad8 Mon Sep 17 00:00:00 2001 From: KernelDeimos <7225168+KernelDeimos@users.noreply.github.com> Date: Wed, 21 Jan 2026 17:13:23 -0500 Subject: [PATCH] feat(data-access): move puter.js read to app driver This is the first functional migration from ths `es:app` driver to the `app` driver. Any call to `puter.apps.get` will go through `es:app` after this change. --- src/puter-js/src/modules/Apps.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/puter-js/src/modules/Apps.js b/src/puter-js/src/modules/Apps.js index babf753b9..f6302f7bb 100644 --- a/src/puter-js/src/modules/Apps.js +++ b/src/puter-js/src/modules/Apps.js @@ -190,7 +190,7 @@ class Apps { if ( typeof args[0] === 'object' && args[0] !== null ) { options.params = args[0]; } - return this.#addUserIterationToApp(await utils.make_driver_method(['uid'], 'puter-apps', 'es:app', 'read').call(this, options)); + return this.#addUserIterationToApp(await utils.make_driver_method(['uid'], 'puter-apps', 'app', 'read').call(this, options)); }; delete = async (...args) => {