From aab2b8fdbc43a967432a91cd80c8c658327db9e6 Mon Sep 17 00:00:00 2001 From: Aiden McClelland <3732071+dr-bonez@users.noreply.github.com> Date: Mon, 11 Nov 2024 11:54:51 -0700 Subject: [PATCH] do not request config action if no config exists (#2779) --- .../src/Adapters/Systems/SystemForEmbassy/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/container-runtime/src/Adapters/Systems/SystemForEmbassy/index.ts b/container-runtime/src/Adapters/Systems/SystemForEmbassy/index.ts index b01ca2dc1f..4bcd3d5946 100644 --- a/container-runtime/src/Adapters/Systems/SystemForEmbassy/index.ts +++ b/container-runtime/src/Adapters/Systems/SystemForEmbassy/index.ts @@ -337,7 +337,7 @@ export class SystemForEmbassy implements System { await effects.setDataVersion({ version: ExtendedVersion.parseEmver(this.manifest.version).toString(), }) - } else { + } else if (this.manifest.config) { await effects.action.request({ packageId: this.manifest.id, actionId: "config",