We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 72e21f6 commit 48cfe69Copy full SHA for 48cfe69
packages/nexrender-core/src/tasks/render.js
@@ -107,7 +107,13 @@ Estimated date of change to the new behavior: 2023-06-01.\n`);
107
108
// setup parameters
109
params.push('-project', projectFile);
110
- params.push('-comp', job.template.composition);
+
111
+ if (job.template.composition) {
112
+ params.push('-comp', job.template.composition);
113
+ } else {
114
+ settings.logger.log(`[${job.uid}] Warning: No composition specified in the template.`);
115
+ }
116
117
params.push('-output', outputFileAE);
118
119
if (!settings.skipRender) {
0 commit comments