Skip to content

Commit cd9328d

Browse files
committed
Fix some processing algorithm exception handling
1 parent 1b2afea commit cd9328d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/processing/qgsprocessingalgrunnertask.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ bool QgsProcessingAlgRunnerTask::run()
4747
bool ok = false;
4848
try
4949
{
50-
mResults = mAlgorithm->run( mParameters, mContext, mFeedback.get(), &ok );
50+
mResults = mAlgorithm->run( mParameters, mContext, mFeedback, &ok );
5151
}
5252
catch ( QgsProcessingException & )
5353
{

0 commit comments

Comments
 (0)