Skip to content

Commit

Permalink
#3370 fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
pawelbaran authored and peterjamesnugent committed Jul 16, 2024
1 parent 86290a2 commit 52263f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Serialiser_Engine/Compute/Deserialise/Type.cs
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ private static Type DeserialiseType(this BsonValue bson, Type value, string vers
return null;
else if (bson.IsString)
{
Type type = BH.Engine.Base.Create.Type(bson.AsString, true);
Type type = BH.Engine.Base.Create.Type(bson.AsString, true, true);
if (type != null)
return type;
else
Expand Down

0 comments on commit 52263f7

Please sign in to comment.