Merge pull request #16042 from Snuffleupagus/GetAnnotations-rethrow

Ensure that "GetAnnotations" errors are propagated to the main-thread (PR 15267 follow-up)
This commit is contained in:
Jonas Jenwald 2023-02-10 12:55:19 +01:00 committed by GitHub
commit 903adc8708
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -544,6 +544,7 @@ class WorkerMessageHandler {
}, },
reason => { reason => {
finishWorkerTask(task); finishWorkerTask(task);
throw reason;
} }
); );
}); });