Skip to content

Commit

Permalink
do not request config action if no config exists (#2779)
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-bonez authored Nov 11, 2024
1 parent b1e7a71 commit aab2b8f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit aab2b8f

Please sign in to comment.