[processing] Fix parameterAsExtentGeometry not returning a geometry when the CRS extracted from the string matches the function's CRS parameter

This commit is contained in:
Mathieu Pellerin 2025-06-01 12:16:29 +07:00 committed by Nyall Dawson
parent 897c923d53
commit b2f19c1365

View File

@ -1285,6 +1285,10 @@ QgsGeometry QgsProcessingParameters::parameterAsExtentGeometry( const QgsProcess
}
return g;
}
else
{
return g;
}
}
}
}