bugfix of output not always being shown

This commit is contained in:
2023-06-10 08:25:00 +02:00
parent c01948dc3f
commit 9795034d74
2 changed files with 2 additions and 1 deletions

View File

@@ -61,6 +61,7 @@ class UpscalingHandler {
child.stderr.on( 'data', ( data ) => {
console.error(`stderr: ${ data }`);
win.send( 'progress', '\n' + data );
} );
child.on( 'error', ( error ) => {