Merge pull request #15420 from Snuffleupagus/issue-15419

Send the `verbosity` when using a workerPort (issue 15419)
This commit is contained in:
Tim van der Meij 2022-09-10 13:31:47 +02:00 committed by GitHub
commit ae12a219d1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2010,6 +2010,10 @@ class PDFWorker {
// and ready to accept messages.
});
this._readyCapability.resolve();
// Send global setting, e.g. verbosity level.
this._messageHandler.send("configure", {
verbosity: this.verbosity,
});
}
_initialize() {