Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
PIM
KItinerary
Commits
33598c1e
Commit
33598c1e
authored
Mar 30, 2021
by
Volker Krause
Browse files
Fix logic for toggling between internal and external extraction
parent
db76b9e1
Changes
1
Show whitespace changes
Inline
Side-by-side
src/lib/engine/extractordocumentnodefactory.cpp
View file @
33598c1e
...
...
@@ -238,7 +238,7 @@ void ExtractorDocumentNodeFactory::setUseSeparateProcess(bool separateProcess)
{
if
(
separateProcess
&&
!
d
->
interceptProcessor
)
{
d
->
interceptProcessor
=
std
::
make_unique
<
ExternalProcessor
>
();
}
else
{
}
else
if
(
!
separateProcess
&&
d
->
interceptProcessor
)
{
d
->
interceptProcessor
.
reset
();
}
}
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment